Skip to content

Commit 3c4a323

Browse files
committed
feat: rename auxo to timekit
1 parent 171d83d commit 3c4a323

17 files changed

+19
-30
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Welcome! Thank you for contributing to auxo!
1+
# Welcome! Thank you for contributing to timekit!
22

33
We follow the standard GitHub [fork & pull](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests#fork--pull) approach to pull requests.
44

55
This project now provides a practical util of Go. But to maintain a good style, your code must meet the requirements of this project.
66

77
## Package Path
88

9-
Now `auxo` project structure is:
9+
Now `timekit` project structure is:
1010

11-
- auxo:
11+
- timekit:
1212
- `format`
1313
- `parse`
1414
- `const`

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# auxo
2-
![author](https://img.shields.io/badge/author-chariesgavin-blueviolet.svg)[![Go](https://github.com/guobinhit/timekit/actions/workflows/go.yml/badge.svg)](https://github.com/guobinhit/timekit/actions/workflows/go.yml)![issues](https://img.shields.io/github/issues/guobinhit/timekit.svg)![stars](https://img.shields.io/github/stars/guobinhit/auxo.svg)![forks](https://img.shields.io/github/forks/guobinhit/timekit.svg)![license](https://img.shields.io/github/license/guobinhit/timekit.svg)
3-
4-
> Auxo, goddess of summer and growth.
1+
# timekit
2+
![author](https://img.shields.io/badge/author-chariesgavin-blueviolet.svg)[![Go](https://github.com/guobinhit/timekit/actions/workflows/go.yml/badge.svg)](https://github.com/guobinhit/timekit/actions/workflows/go.yml)![issues](https://img.shields.io/github/issues/guobinhit/timekit.svg)![stars](https://img.shields.io/github/stars/guobinhit/timekit.svg)![forks](https://img.shields.io/github/forks/guobinhit/timekit.svg)![license](https://img.shields.io/github/license/guobinhit/timekit.svg)
53

64
# Contributing
75

const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
// Define dates format constant
44
const (

dates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import "time"
44

dates_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import (
44
"reflect"

format.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import (
44
"time"

format_cn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import (
44
"time"

format_cn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import (
44
"testing"

format_cpt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import (
44
"time"

format_cpt_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auxo
1+
package timekit
22

33
import (
44
"testing"

0 commit comments

Comments
 (0)