Feat: works on my machine

This commit is contained in:
2025-10-16 05:07:56 +08:00
commit 5bbab63a2c
37 changed files with 4553 additions and 0 deletions

18
auth.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"gitea.konchin.com/ytshih/inp2025/workflows"
"github.com/spf13/cobra"
)
var authCmd = &cobra.Command{
Use: "auth",
Run: func(cmd *cobra.Command, args []string) {
workflows.AuthServer()
},
}
func init() {
authCmd.Flags().
String("listen-addr", "localhost:8888", "")
}