Files
m3o-go/examples/url/list/listYourShortenedUrls/main.go
2021-11-03 15:36:34 +00:00

17 lines
276 B
Go
Executable File

package main
import (
"fmt"
"os"
"go.m3o.com/url"
)
// List information on all the shortened URLs that you have created
func main() {
urlService := url.NewUrlService(os.Getenv("M3O_API_TOKEN"))
rsp, err := urlService.List(&url.ListRequest{})
fmt.Println(rsp, err)
}