Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 525 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 525 Bytes

dynalist-go

GoDoc Go Report Card

Set an env before using:

export DYNALIST_TOKEN=your_secret_token

example

Get file list:

api, err := dynalist.New()
if err != nil {
	panic(err)
}

res, err := api.FileList()
if err != nil {
	panic(err)
}

fmt.Printf("%+v\n", res)