GraphQL API and utilities for the rpdata 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.
|
|
package main
import ( "context" "fmt" "log" "net/http" "runtime/debug"
"git.aiterp.net/rpdata/api/graph2" "git.aiterp.net/rpdata/api/internal/store" logModel "git.aiterp.net/rpdata/api/model/log" "github.com/99designs/gqlgen/handler" )
func main() { err := store.Init() if err != nil { log.Fatalln("Failed to init store:", err) }
http.Handle("/", handler.Playground("RPData API", "/query")) http.Handle("/query", handler.GraphQL( graph2.New(), handler.RecoverFunc(func(ctx context.Context, err interface{}) error { // send this panic somewhere
log.Println(err) log.Println(string(debug.Stack()))
return fmt.Errorf("shit") }), ))
go updateCharacters()
log.Fatal(http.ListenAndServe(":8081", nil)) }
func updateCharacters() { n, err := logModel.UpdateAllCharacters() if err != nil { log.Println("Charcter updated stopped:", err) }
log.Println("Updated characters on", n, "logs") }
|