Created main.go to hold some exammples of usage

This commit is contained in:
Sam
2019-05-28 14:42:39 -04:00
parent 80f06f574e
commit 36645e0891

12
main.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"fmt"
"keybase/api"
)
func main() {
k := api.New()
fmt.Printf("Username: %v\nLogged In: %v\nVersion: %v", k.Username(), k.LoggedIn(), k.Version())
}