generated from ElnuDev/go-project
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.
18 lines
422 B
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))
|
|
}
|