Add initial distributor CLI skeleton
This commit is contained in:
12
cmd/distributor/main.go
Normal file
12
cmd/distributor/main.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
|
||||
"gitea.maximumdirect.net/eric/distributor/internal/cli"
|
||||
)
|
||||
|
||||
func main() {
|
||||
os.Exit(cli.Execute(context.Background(), os.Args[1:], os.Stdout, os.Stderr))
|
||||
}
|
||||
Reference in New Issue
Block a user