mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-14 08:52:44 +00:00
11 lines
96 B
Go
11 lines
96 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
initialize()
|
||
|
http.Handle("/", router())
|
||
|
}
|