diff --git a/main.go b/main.go index ada29c9..20fb1d9 100644 --- a/main.go +++ b/main.go @@ -11,8 +11,6 @@ import ( "net/http" ) -const USER = "selloo" - func main() { // Loads Config @@ -38,6 +36,8 @@ func main() { // Initialize the e621API e621Client := e621.NewClient(config.E621APIKey, config.E621Username) + log.Printf("Im ready!") + // Register the UserHandler with the "/user" route http.HandleFunc("/user", api.UserHandler(ctx, driver, e621Client))