mirror of
https://github.com/statbate/fantastic-engine.git
synced 2026-08-11 03:02:41 +00:00
20 lines
189 B
Go
20 lines
189 B
Go
|
|
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)
|
||
|
|
}
|