add main project files

This commit is contained in:
2024-09-11 09:54:55 +02:00
parent 5f82ac25cb
commit 8fc677a17f
18 changed files with 735 additions and 0 deletions

14
cmd/altcha/main.go Normal file
View File

@ -0,0 +1,14 @@
package main
import (
"forge.cadoles.com/cadoles/altcha-server/internal/command"
)
func main() {
command.Main(
command.RunCommand(),
command.GenerateCommand(),
command.SolveCommand(),
command.VerifyCommand(),
)
}