mirror of
https://github.com/statbate/fantastic-engine.git
synced 2026-08-11 03:02:41 +00:00
update
This commit is contained in:
parent
8f4ed6757f
commit
d901de7c46
2 changed files with 139 additions and 0 deletions
19
test/main.go
Normal file
19
test/main.go
Normal 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue