mirror of
https://github.com/SphericalKat/medium.rip.git
synced 2024-11-16 11:25:57 +00:00
13 lines
168 B
Go
13 lines
168 B
Go
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/medium.rip/api"
|
|
)
|
|
|
|
func main() {
|
|
log.Println("Starting HTTP server...")
|
|
api.RegisterRoutes()
|
|
}
|