bbe9dcaf2a
Server now accepts runner connections via websockets. Jobs will be delegated to these runners. This is currently a WIP, as it is still hardcoded to use the first available runner.
17 lines
433 B
Modula-2
17 lines
433 B
Modula-2
module git.ohea.xyz/cursorius/server
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
git.ohea.xyz/golang/config v0.0.0-20220915224621-b9debd233173
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
|
|
nhooyr.io/websocket v1.8.7
|
|
)
|
|
|
|
require (
|
|
github.com/gobwas/ws v1.1.0 // indirect
|
|
github.com/klauspost/compress v1.10.3 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
|
|
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
|
|
)
|