12 lines
150 B
Go
Raw Normal View History

2017-06-10 00:19:31 +00:00
package main
2017-06-14 20:13:30 +00:00
import (
"github.com/aerogo/api"
"github.com/animenotifier/arn"
)
2017-06-10 00:19:31 +00:00
2017-06-14 20:13:30 +00:00
func init() {
api := api.New("/api/", arn.DB)
api.Install(app)
}