1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 23:52:57 +00:00
cloudkeys-go/server.go
Knut Ahlers 0ad1681ee0
Remove old assets, prepare adding Vue serving
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-11-04 14:32:00 +01:00

11 lines
96 B
Go

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