pogo/src/setup.go

21 lines
255 B
Go
Raw Normal View History

package main
import (
"fmt"
)
// Serve setup.html and config parameters
func ServeSetup(w http.ResponseWriter, r *http.Request) {
}
// Write JSON config to file
func WriteConfig() {
}
// Connect to SQL and create admin user
func CreateAdmin() {
}