fix: port arg not being used

This commit is contained in:
tux
2025-03-04 09:38:54 +05:30
parent f21286ecb7
commit f7b42a29bf
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ type Trok struct {
func (t *Trok) Init(addr string) error {
t.publicConns = make(map[string]Conn)
t.webServer = NewTrokWeb(":3000")
t.webServer = NewTrokWeb(":443")
err := t.controlServer.Init(addr, "Controller")
return err
}