mirror of
https://github.com/pikami/cosmium.git
synced 2024-11-28 16:37:18 +00:00
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")
|
|
}
|