Add Basic Websocket Server/Worker Connection
This commit is contained in:
parent
01e34936e9
commit
9ac9ed8fe2
9 changed files with 218 additions and 7 deletions
15
config/config.go
Normal file
15
config/config.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package config
|
||||
|
||||
type Config struct {
|
||||
SharedSecret string
|
||||
Server Server
|
||||
Worker Worker
|
||||
}
|
||||
|
||||
type Server struct {
|
||||
Address string
|
||||
}
|
||||
|
||||
type Worker struct {
|
||||
Address string
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue