From b81362513aa8658e78cf6563074ca21553e2551f Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Tue, 10 Dec 2024 11:51:47 +0800 Subject: [PATCH] Rename `longbridgeapp` to `longbridge`. --- README.md | 6 +++--- go.mod | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1a1385f..fb090a5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Assert -[![Go](https://github.com/longbridgeapp/assert/actions/workflows/go.yml/badge.svg)](https://github.com/longbridgeapp/assert/actions/workflows/go.yml) +[![Go](https://github.com/longbridge/assert/actions/workflows/go.yml/badge.svg)](https://github.com/longbridge/assert/actions/workflows/go.yml) > 🍯 Requirement Go 1.18+ for Generics, lower Go version please use 0.x @@ -12,7 +12,7 @@ Extends [stretchr/testify/assert](https://github.com/stretchr/testify/tree/maste ## Installation ```bash -go get github.com/longbridgeapp/assert +go get github.com/longbridge/assert ``` ## Usage @@ -21,7 +21,7 @@ go get github.com/longbridgeapp/assert package some_test import ( - "github.com/longbridgeapp/assert" + "github.com/longbridge/assert" ) func TestSomeMethod(t *testing.T) { diff --git a/go.mod b/go.mod index d4459dc..859212d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/longbridgeapp/assert +module github.com/longbridge/assert go 1.18