1 Star 0 Fork 0

SoLo/goScript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
SoLo 提交于 2021-08-08 18:46 . 基建完成
package main
import (
"fmt"
"net/http"
auth2 "yjscript/module/cli/auth"
)
func init() {
(&auth2.Auth{}).IsAuth()
}
func hello(w http.ResponseWriter,r *http.Request) {
fmt.Fprintf(w,"hello world")
}
func main() {
s:=&http.Server{Addr: "0.0.0.0:8080"}
http.HandleFunc("/",hello)
s.ListenAndServe()
//a:=common.ExecCommand("firewall-cmd --zone=public --query-port=3306/tcp --permanent")
//fmt.Println(a)
//(&common.Common{}).SetGoScriptJson()
// tips:=`===========================
//欢迎来到我的工具
//加油
//`
//(&common.Common{}).PrintTips()
//a.InitTipsPrint()
//f,_:=reflect.TypeOf(a.TipsError).FieldByName("IsCentos7")
//fmt.Println(f)
//var c common.Common=common.Common{}
//(&c).ProgressBar()
//fout,err:=os.OpenFile("./data.txt",os.O_WRONLY | os.O_CREATE | os.O_APPEND,0666)
//if err!=nil{
// fmt.Println(err)
// return
//}
//
//defer fout.Close()
//
//for i:=0;i<=5;i++{
// outStr:=fmt.Sprintf("%s:%d\n", "Hello go", i)
// fout.WriteString(outStr)
// fout.Write([]byte("abcd\n"))
//}
//var res string=ExecCommand("ls");
//log.Println(res)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/meiyu1992/go-script.git
git@gitee.com:meiyu1992/go-script.git
meiyu1992
go-script
goScript
master

搜索帮助