town/cmd/registeruser/main.go

11 lines
219 B
Go

package main
import "fmt"
// TODO this command adds a new user to /town/var/town.db
// it's meant to be invoked by the welcome binary upon successfully creating a new user account
func main() {
fmt.Println("lol")
}