Rename pkg/ to snappy/
This commit is contained in:
parent
ffc5baa79c
commit
ce2f45d317
16
main.go
Normal file
16
main.go
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
sn "github.com/ekzyis/snappy/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
c := sn.NewClient(&sn.ClientOptions{})
|
||||||
|
items, err := c.Items(nil)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
log.Println(items)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user