This commit is contained in:
poiuty 2023-06-26 12:18:10 +03:00
parent 8f4ed6757f
commit d901de7c46
2 changed files with 139 additions and 0 deletions

19
test/main.go Normal file
View file

@ -0,0 +1,19 @@
package main
import (
"fmt"
"os"
)
func main() {
if len(os.Args) < 3 {
fmt.Println("./test room server")
return
}
room := os.Args[1]
key := os.Args[2]
statRoom(room, key)
}