GoLibrary 是针对 Go 封装的一套工具类库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
李光春 b718272697
update
2 years ago
.github/workflows - 优化时间方法 2 years ago
service add meituan 2 years ago
utils update 2 years ago
vendor update 2 years ago
.gitignore update vendor 2 years ago
CHANGELOG.md update 2 years ago
LICENSE - add int/64、php 2 years ago
README.md update 2 years ago
go.mod update 2 years ago
go.sum update 2 years ago
library.go update 2 years ago
library_test.go - add int/64、php 2 years ago

README.md

Golang Library

📦 Golang 扩展包

godoc goproxy.cn goreportcard.com deps.dev

安装使用

go get -v -u github.com/dtapps/go-library

import (
    "github.com/dtapps/go-library"
)

用法示例

默认时区为 Local即服务器所在时区

当前时间
import (
	"github.com/dtapps/go-library/utils/gotime"
)

gotime.Current().Now()
gotime.Current().Format()
gotime.Current().Timestamp()
gotime.Current().TimestampWithMillisecond()