1 Star 0 Fork 2

智能时代/httpdns

forked from sheldwu/httpdns 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.go 702 Bytes
一键复制 编辑 原始数据 按行查看 历史
xudongw 提交于 2017-10-23 14:15 . 提测版
package main
import (
"log"
"net/http"
"gitee.com/sheldwu/httpdns/util"
"gitee.com/sheldwu/httpdns/handler"
"github.com/wangtuanjie/ip17mon"
"git.oschina.net/sheldwu/redis"
"gitee.com/sheldwu/httpdns/config"
)
var params []interface{}
type responseT struct {
Msg string `json:"msg"`
Status int `json:"status"`
}
func main() {
err := ip17mon.Init("./data/17monipdb.dat")
if err != nil {
log.Fatal(err)
}
go util.Init()
redis.Init(config.RedisConfig)
//redis.GetInstance("default", config.RedisConfig)
http.HandleFunc("/cabinet", handler.Cabinet)
http.HandleFunc("/app", handler.App)
err = http.ListenAndServe(":8899", nil)
if err != nil {
log.Fatal(err)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rxtech/httpdns.git
[email protected]:rxtech/httpdns.git
rxtech
httpdns
httpdns
master

搜索帮助