mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
13 lines
139 B
Go
13 lines
139 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
//go:generate go-bindata assets templates
|
||
|
|
||
|
func init() {
|
||
|
initialize()
|
||
|
http.Handle("/", router())
|
||
|
}
|