Gitiles
Code Review
Sign In
code.v1.dodo.cloud
/
staff
/
4e9f216fadee833f03931bdf2370ce70e2d110a3
/
.
/
server
/
cmd
/
main.go
blob: 4316dfdeea3a25280162da7764bffaa0f023f507 [
file
] [
log
] [
blame
]
package main
import (
"os"
"github.com/iomodo/staff/cmd/commands"
)
func main() {
if err := commands.Run(os.Args[1:]); err != nil {
os.Exit(1)
}
}