split out message, config

This commit is contained in:
bel
2023-03-26 08:42:09 -06:00
parent e1e2ce3eec
commit 44cb05487e
3 changed files with 58 additions and 49 deletions

View File

@@ -0,0 +1,14 @@
package v01
type config struct {
Feedback struct {
Addr string
}
Users map[string]struct {
Player int
Message string
}
Players []struct {
Transformation transformation
}
}