monorepoization: fix import paths

master
Serge Bazanski 2018-10-25 12:01:10 +01:00
parent c3a7fdae37
commit 814749f347
2 changed files with 3 additions and 3 deletions

View File

@ -72,10 +72,10 @@ In lieu of a godoc (soon (TM)), here's a quick usage example:
import (
"code.hackerspace.pl/q3k/hspki"
"code.hackerspace.pl/hscloid/pki"
)
...
g := grpc.NewServer(hspki.WithServerHSPKI()...)
g := grpc.NewServer(pki.WithServerHSPKI()...)
pb.RegiserXXXServer(g, service)
...

View File

@ -1,4 +1,4 @@
package hspki
package pki
// Copyright 2018 Sergiusz Bazanski <q3k@hackerspace.pl>
//