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