17 lines
234 B
Go
17 lines
234 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
beerpongelo "git.kapelle.org/niklas/beerpong-elo/internal"
|
||
|
"github.com/alexflint/go-arg"
|
||
|
)
|
||
|
|
||
|
type args struct {
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
var args args
|
||
|
arg.MustParse(&args)
|
||
|
|
||
|
beerpongelo.Start(beerpongelo.Config{})
|
||
|
}
|