Files
m3o-go/m3o.go
2021-11-03 14:00:31 +00:00

20 lines
242 B
Go
Executable File

package m3o
import (
"go.m3o.com/notes"
)
func NewClient(token string) *Client {
return &Client{
token: token,
NotesService: notes.NewNotesService(token),
}
}
type Client struct {
token string
NotesService *notes.NotesService
}