码迷,mamicode.com
首页 > 其他好文 > 详细

Go常用库

时间:2020-07-21 21:53:30      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:class   常用   github   context   pac   get   pack   pre   for   

flag

package main

import (
	"flag"
	"github.com/kataras/iris/v12"
)

// 需要配合 flag.Parse() 使用
var port = flag.String("port", "8080", "The address to listen on for HTTP requests.")

func main() {
	flag.Parse()
	app := iris.New()
	app.Get("/", index)
	app.Listen(":" + *port)
}

func index(ctx iris.Context) {
	ctx.HTML("<h1>Hello, World!</h1>")
}

Go常用库

标签:class   常用   github   context   pac   get   pack   pre   for   

原文地址:https://www.cnblogs.com/CSunShine/p/13355125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!