mirror of https://github.com/pikami/cosmium.git
15 lines
202 B
Go
15 lines
202 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/pikami/cosmium/api"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello world")
|
||
|
|
||
|
router := api.CreateRouter()
|
||
|
router.RunTLS(":8081", "../example.crt", "../example.key")
|
||
|
}
|