Skip to content

Commit 32d5e53

Browse files
authored
move to acmestack (#80)
* move to acmestack * update license
1 parent ddc09f2 commit 32d5e53

35 files changed

+50
-50
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# godkits
22

3-
[![license card](https://img.shields.io/badge/License-Apache%202.0-brightgreen.svg?label=license)](https://github.com/openingo/godkits/blob/main/LICENSE)
4-
[![go version](https://img.shields.io/github/go-mod/go-version/openingo/godkits)](#)
5-
[![go report](https://goreportcard.com/badge/github.com/openingo/godkits)](https://goreportcard.com/report/github.com/openingo/godkits)
6-
[![codecov report](https://codecov.io/gh/openingo/godkits/branch/main/graph/badge.svg)](https://codecov.io/gh/openingo/godkits)
7-
[![workflow](https://github.com/openingo/godkits/actions/workflows/go.yml/badge.svg?event=push)](#)
8-
[![Go Reference](https://pkg.go.dev/badge/github.com/openingo/godkits.svg)](https://pkg.go.dev/github.com/openingo/godkits)
9-
[![build docs](https://github.com/openingo/godkits/actions/workflows/build-docs.yaml/badge.svg)](https://github.com/openingo/godkits/actions/workflows/build-docs.yaml)
10-
[![lasted release](https://img.shields.io/github/v/release/openingo/godkits?label=lasted)](https://github.com/openingo/godkits/releases)
3+
[![license card](https://img.shields.io/badge/License-Apache%202.0-brightgreen.svg?label=license)](https://github.com/acmestack/godkits/blob/main/LICENSE)
4+
[![go version](https://img.shields.io/github/go-mod/go-version/acmestack/godkits)](#)
5+
[![go report](https://goreportcard.com/badge/github.com/acmestack/godkits)](https://goreportcard.com/report/github.com/acmestack/godkits)
6+
[![codecov report](https://codecov.io/gh/acmestack/godkits/branch/main/graph/badge.svg)](https://codecov.io/gh/acmestack/godkits)
7+
[![workflow](https://github.com/acmestack/godkits/actions/workflows/go.yml/badge.svg?event=push)](#)
8+
[![Go Reference](https://pkg.go.dev/badge/github.com/acmestack/godkits.svg)](https://pkg.go.dev/github.com/acmestack/godkits)
9+
[![build docs](https://github.com/acmestack/godkits/actions/workflows/build-docs.yaml/badge.svg)](https://github.com/acmestack/godkits/actions/workflows/build-docs.yaml)
10+
[![lasted release](https://img.shields.io/github/v/release/acmestack/godkits?label=lasted)](https://github.com/acmestack/godkits/releases)
1111

1212

1313
the golang development toolkits.

array/array.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

array/array_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

arrayx/list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +17,7 @@
1717

1818
package arrayx
1919

20-
import "github.com/openingo/godkits/gox/containerx/listx"
20+
import "github.com/acmestack/godkits/gox/containerx/listx"
2121

2222
// List shortcut from listx.ArrayList
2323
type List struct {

arrayx/list_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/openingo/godkits
1+
module github.com/acmestack/godkits
22

33
go 1.18

gox/containerx/listx/array_list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -20,7 +20,7 @@ package listx
2020
import (
2121
"reflect"
2222

23-
"github.com/openingo/godkits/array"
23+
"github.com/acmestack/godkits/array"
2424
)
2525

2626
// defaultArraylistSize the default array size 10

gox/containerx/listx/array_list_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

gox/containerx/listx/listx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

gox/containerx/listx/listx_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, OpeningO
2+
* Copyright (c) 2022, AcmeStack
33
* All rights reserved.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)