From 76a520a5675cd44d3f68e5eff64134f5ab41d95a Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Wed, 27 Sep 2023 04:35:39 +0900 Subject: [PATCH] initial commits --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index d5de232..affbb31 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,27 @@ Note that the **Mastodon API** is not (yet) officially part of **ActivityPub**. Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-mstdn [![GoDoc](https://godoc.org/sourcecode.social/reiver/go-mstdn?status.svg)](https://godoc.org/sourcecode.social/reiver/go-mstdn) + +## Import + +To import package **mstdn** use `import` code like the follownig: +``` +import "sourcecode.social/reiver/go-mstdn" +``` + +To import the Mastodon API **entities** use `import` code like the following: +``` +import "sourcecode.social/reiver/go-mstdn/ent" +``` + +To import the Mastodon API **entities** for **administrators** use `import` code like the following: +``` +import "sourcecode.social/reiver/go-mstdn/ent/admn" +``` + +## Installation + +To install package **mstdn** do the following: +``` +GOPROXY=direc https://sourcecode.social/reiver/go-mstdn +```