1 Star 0 Fork 0

付宇飞/restful-api-demo

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
log.go 366 Bytes
Copy Edit Raw Blame History
付宇飞 authored 2022-07-13 18:07 +08:00 . 添加程序配置对象
package conf
// LogFormat 日志格式
type LogFormat string
const (
// TextFormat 文本格式
TextFormat = LogFormat("text")
// JSONFormat json格式
JSONFormat = LogFormat("json")
)
// LogTo 日志记录到哪儿
type LogTo string
const (
// ToFile 保存到文件
ToFile = LogTo("file")
// ToStdout 打印到标准输出
ToStdout = LogTo("stdout")
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fuyufei889/restful-api-demo.git
git@gitee.com:fuyufei889/restful-api-demo.git
fuyufei889
restful-api-demo
restful-api-demo
9a034922694f

Search