From e6f5403296b7f3d8b2d9c6f402d533a61ff75bd1 Mon Sep 17 00:00:00 2001 From: Michelle Laurenti Date: Thu, 13 Jun 2024 13:59:24 +0000 Subject: [PATCH] rename package to moveaxlab --- README.md | 4 ++-- create.go | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3a25e8f..dcf2e9d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ forked from [CengSin/oracle](https://github.com/CengSin/oracle). ### how to install ```bash -go get github.com/cengsin/oracle +go get github.com/moveaxlab/oracle ``` ### usage @@ -24,7 +24,7 @@ go get github.com/cengsin/oracle ```go import ( "fmt" - "github.com/cengsin/oracle" + "github.com/moveaxlab/oracle" "gorm.io/gorm" "log" ) diff --git a/create.go b/create.go index e195476..c896405 100644 --- a/create.go +++ b/create.go @@ -11,7 +11,7 @@ import ( "gorm.io/gorm/clause" gormSchema "gorm.io/gorm/schema" - "github.com/cengsin/oracle/clauses" + "github.com/moveaxlab/oracle/clauses" ) func Create(db *gorm.DB) { diff --git a/go.mod b/go.mod index c8ce654..c776b6c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cengsin/oracle +module github.com/moveaxlab/oracle go 1.21