step011: run command

This commit is contained in:
root
2024-03-20 19:14:31 -07:00
commit 2893ff3c21
11 changed files with 234 additions and 0 deletions

10
main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"context"
"upod/internal/cmd"
)
func main() {
cmd.Start(context.TODO())
}