mirror of https://github.com/zieckey/gochart.git
10 lines
140 B
Go
10 lines
140 B
Go
|
package main
|
||
|
|
||
|
const start = `version: 1.0
|
||
|
http://localhost:8000`
|
||
|
|
||
|
func main() {
|
||
|
println(start)
|
||
|
println(ListenAndServe(":8000").Error())
|
||
|
}
|