diff options
author | Alan Pearce | 2024-06-29 19:11:56 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-29 19:11:56 +0200 |
commit | 7749962c24172c29fd8851afb86e923b5d5f369c (patch) | |
tree | 92588cd38cebaeba9aab70a0a0b43a19da289abd /internal/config | |
parent | c4b57d28caa8986d9fbdcbdb4085c8e74974dffc (diff) | |
download | website-7749962c24172c29fd8851afb86e923b5d5f369c.tar.lz website-7749962c24172c29fd8851afb86e923b5d5f369c.tar.zst website-7749962c24172c29fd8851afb86e923b5d5f369c.zip |
change error package
Diffstat (limited to 'internal/config')
-rw-r--r-- | internal/config/config.go | 2 | ||||
-rw-r--r-- | internal/config/cspgenerator.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index deb70e6..5e568cd 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -8,7 +8,7 @@ import ( "go.alanpearce.eu/website/internal/log" "github.com/BurntSushi/toml" - "github.com/pkg/errors" + "gitlab.com/tozd/go/errors" ) type Taxonomy struct { diff --git a/internal/config/cspgenerator.go b/internal/config/cspgenerator.go index 40eca01..9974819 100644 --- a/internal/config/cspgenerator.go +++ b/internal/config/cspgenerator.go @@ -9,7 +9,7 @@ import ( "github.com/crewjam/csp" "github.com/fatih/structtag" - "github.com/pkg/errors" + "gitlab.com/tozd/go/errors" ) func GenerateCSP() error { |