From cf182d4ba52422e3e09ec9756a8d42db971f64c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=85=89=E6=98=A5?= Date: Mon, 9 May 2022 10:46:52 +0800 Subject: [PATCH] update --- README.md | 12 ++++++------ app.go | 2 +- go.mod | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index bcbaa9a..97c8f75 100644 --- a/README.md +++ b/README.md @@ -5,21 +5,21 @@ 📦 Golang 时间组件 [comment]: <> (go) -[![godoc](https://pkg.go.dev/badge/github.com/dtapps/gotime?status.svg)](https://pkg.go.dev/github.com/dtapps/gotime) -[![goproxy.cn](https://goproxy.cn/stats/github.com/dtapps/gotime/badges/download-count.svg)](https://goproxy.cn/stats/github.com/dtapps/gotime) -[![goreportcard.com](https://goreportcard.com/badge/github.com/dtapps/gotime)](https://goreportcard.com/report/github.com/dtapps/gotime) -[![deps.dev](https://img.shields.io/badge/deps-go-red.svg)](https://deps.dev/go/github.com%2Fdtapps%2Fgotime) +[![godoc](https://pkg.go.dev/badge/go.dtapp.net/gotime?status.svg)](https://pkg.go.dev/go.dtapp.net/gotime) +[![goproxy.cn](https://goproxy.cn/stats/go.dtapp.net/gotime/badges/download-count.svg)](https://goproxy.cn/stats/go.dtapp.net/gotime) +[![goreportcard.com](https://goreportcard.com/badge/go.dtapp.net/gotime)](https://goreportcard.com/report/go.dtapp.net/gotime) +[![deps.dev](https://img.shields.io/badge/deps-go-red.svg)](https://deps.dev/go/go.dtapp.net/gotime) #### 安装使用 ```go -go get -v -u github.com/dtapps/gotime +go get -v -u go.dtapp.net/gotime ``` #### 导入 ```go import ( - "github.com/dtapps/gotime" + "go.dtapp.net/gotime" ) ``` \ No newline at end of file diff --git a/app.go b/app.go index a666653..4905ba2 100644 --- a/app.go +++ b/app.go @@ -5,7 +5,7 @@ import ( "time" ) -const Version = "1.0.1" +const Version = "1.0.2" // 时间格式化常量 const ( diff --git a/go.mod b/go.mod index 54fc872..f7f33fd 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/dtapps/gotime +module go.dtapp.net/gotime go 1.18