1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 23:52:57 +00:00
cloudkeys-go/server.go

11 lines
96 B
Go
Raw Normal View History

package main
import (
"net/http"
)
func init() {
initialize()
http.Handle("/", router())
}