mirror of
https://github.com/zieckey/gochart.git
synced 2025-04-24 13:48:57 +08:00
15 lines
213 B
Go
15 lines
213 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
const start = `version: 1.0
|
|
http://localhost:8000`
|
|
|
|
func main() {
|
|
log.SetFlags(log.Lshortfile | log.Ldate | log.Ltime)
|
|
println(start)
|
|
println(ListenAndServe(":8000").Error())
|
|
}
|