mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 10:34:27 +00:00
18 lines
303 B
Go
Executable File
18 lines
303 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"go.m3o.com/comments"
|
|
)
|
|
|
|
// Read a comment
|
|
func main() {
|
|
commentsService := comments.NewCommentsService(os.Getenv("M3O_API_TOKEN"))
|
|
rsp, err := commentsService.Read(&comments.ReadRequest{
|
|
Id: "63c0cdf8-2121-11ec-a881-0242e36f037a",
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|