Rename pkg/ to snappy/

This commit is contained in:
ekzyis 2024-04-07 04:38:06 +02:00
parent ffc5baa79c
commit ce2f45d317
5 changed files with 16 additions and 0 deletions

16
main.go Normal file
View 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)
}