blob: 5e8b3731870a53c8d117fff77ea28fa40a6afaa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package main
import (
"os"
"github.com/hovertank3d/lzcnt.space"
)
import "C"
func main() {
host := ":8080"
if len(os.Args) == 2 {
host = os.Args[1]
}
srv := lzcnt.New()
srv.ListenAndServe(host)
}
|