From 771ca6a6afcbc65f450fadddbd258cf3e02d54c1 Mon Sep 17 00:00:00 2001 From: Manuel Doncel Martos Date: Thu, 5 Dec 2024 23:38:19 +0100 Subject: [PATCH] using gotime --- README.md | 6 +++--- examples/go.mod | 4 ++-- examples/main.go | 2 +- go.mod | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2189837..7994acc 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -[![Go](https://github.com/manuelarte/GoTime/actions/workflows/go.yml/badge.svg)](https://github.com/manuelarte/GoTime/actions/workflows/go.yml) -![coverage](https://raw.githubusercontent.com/manuelarte/GoTime/badges/.badges/main/coverage.svg) +[![Go](https://github.com/manuelarte/gotime/actions/workflows/go.yml/badge.svg)](https://github.com/manuelarte/GoTime/actions/workflows/go.yml) +![coverage](https://raw.githubusercontent.com/manuelarte/gotime/badges/.badges/main/coverage.svg) # 🕐 GoTime GoTime is a Go library for working with time periods, enabling easy creation and overlap calculation. GoTime simplifies the creation and manipulation of time periods, allowing you to easily define, compare, and compute overlaps between time intervals. ## 📝 How to install it -> go get github.com/manuelarte/GoTime +> go get github.com/manuelarte/gotime ## ✏️ Introduction diff --git a/examples/go.mod b/examples/go.mod index 3b31d88..b951a3b 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -2,6 +2,6 @@ module examples go 1.23 -replace github.com/manuelarte/GoTime v0.0.0-20241202135225-37832ac5075a => ../ +replace github.com/manuelarte/gotime v0.0.0-20241202135225-37832ac5075a => ../ -require github.com/manuelarte/GoTime v0.0.0-20241202135225-37832ac5075a +require github.com/manuelarte/gotime v0.0.0-20241202135225-37832ac5075a diff --git a/examples/main.go b/examples/main.go index 8a80d00..558b6f9 100644 --- a/examples/main.go +++ b/examples/main.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/manuelarte/GoTime/pkg/timeperiod" + "github.com/manuelarte/gotime/pkg/timeperiod" "time" ) diff --git a/go.mod b/go.mod index 2993d78..33869c7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module GoTime +module gotime go 1.20