Want to contribute? Fork me on Codeberg.org!
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

18 lines
422 B

package main
import (
"log"
"net/http"
"git.elnu.com/ElnuDev/jichanorg/shiritori/api"
. "git.elnu.com/ElnuDev/jichanorg/shiritori/clients"
)
func main() {
clients := NewClientSet()
http.Handle("/", http.FileServer(http.Dir("static")))
http.HandleFunc("/api/events", api.GenerateApiEvents(&clients))
http.HandleFunc("/api/submit", api.GenerateApiSubmit(&clients))
log.Fatal(http.ListenAndServe(":3333", nil))
}