Go binary/server for helping run/build sessions for the Maze Rats TTRPG
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main
|
|
|
|
import (
|
|
"mazeratsgen/cmd"
|
|
)
|
|
|
|
// @title Maze Rats API
|
|
// @BasePath /
|
|
// @query.collection.format multi
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|
|
|