diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.com> | 2025-07-27 15:06:09 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.com> | 2025-07-27 16:36:28 +0530 |
commit | 0e46b370f0378f17f24481eb5d9526b690ecadb9 (patch) | |
tree | cc751fd4f9a5b12b74446b1dcb81aff6ce5fdd34 /examples | |
parent | Add raw API (diff) | |
download | cache-0.1.1.tar cache-0.1.1.tar.gz cache-0.1.1.tar.bz2 cache-0.1.1.tar.lz cache-0.1.1.tar.xz cache-0.1.1.tar.zst cache-0.1.1.zip |
Diffstat (limited to '')
-rw-r--r-- | examples/basic_usage/main.go | 2 | ||||
-rw-r--r-- | examples/eviction_policy/main.go | 2 | ||||
-rw-r--r-- | examples/eviction_policy_persistant/main.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/basic_usage/main.go b/examples/basic_usage/main.go index 5b44cd9..cfbbaa3 100644 --- a/examples/basic_usage/main.go +++ b/examples/basic_usage/main.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/marcthe12/cache" + "go.sudomsg.com/cache" ) func main() { diff --git a/examples/eviction_policy/main.go b/examples/eviction_policy/main.go index fa56b8f..3f040b5 100644 --- a/examples/eviction_policy/main.go +++ b/examples/eviction_policy/main.go @@ -5,7 +5,7 @@ import ( "os" "time" - "github.com/marcthe12/cache" + "go.sudomsg.com/cache" ) func main() { diff --git a/examples/eviction_policy_persistant/main.go b/examples/eviction_policy_persistant/main.go index fc7cc32..8a79efa 100644 --- a/examples/eviction_policy_persistant/main.go +++ b/examples/eviction_policy_persistant/main.go @@ -5,7 +5,7 @@ import ( "os" "time" - "github.com/marcthe12/cache" + "go.sudomsg.com/cache" ) func main() { |