implement new sign server

This commit is contained in:
rockisch
2022-11-05 20:28:52 -03:00
parent c9955a724f
commit 7f45d09d96
6 changed files with 460 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ type Config struct {
Database Database
Launcher Launcher
Sign Sign
NewSign NewSign
Channel Channel
Entrance Entrance
}
@@ -99,6 +100,12 @@ type Sign struct {
Port int
}
// NewSign holds the new sign server config
type NewSign struct {
Enabled bool
Port int
}
type Channel struct {
Enabled bool
}