diff options
author | Laria Carolin Chabowski <laria@laria.me> | 2017-10-15 21:58:41 +0200 |
---|---|---|
committer | Laria Carolin Chabowski <laria@laria.me> | 2017-10-15 21:59:00 +0200 |
commit | a070387b5be893ba8029dc852d9e6a8daa283c65 (patch) | |
tree | de097825f17f641c6ab8abb7f802720093524cd2 /storage/local | |
parent | 3311c0fc42fca06ff973487d09c71e8798809b63 (diff) | |
download | petrific-a070387b5be893ba8029dc852d9e6a8daa283c65.tar.gz petrific-a070387b5be893ba8029dc852d9e6a8daa283c65.tar.bz2 petrific-a070387b5be893ba8029dc852d9e6a8daa283c65.zip |
Host primarily on GitHub
go get doesn't work for my own server due to ssl certificates not being
accepted :(
Diffstat (limited to 'storage/local')
-rw-r--r-- | storage/local/local.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/local/local.go b/storage/local/local.go index ae39eb5..b534e90 100644 --- a/storage/local/local.go +++ b/storage/local/local.go @@ -2,11 +2,11 @@ package local import ( "bytes" - "code.laria.me/petrific/config" - "code.laria.me/petrific/objects" - "code.laria.me/petrific/storage" "encoding/hex" "fmt" + "github.com/silvasur/petrific/config" + "github.com/silvasur/petrific/objects" + "github.com/silvasur/petrific/storage" "io" "os" "strings" |