Go to file
Elara ff36330625 Update for Lemmy v0.17.3 2023-06-05 13:30:13 -07:00
cmd/gen Update for Lemmy v0.17.3 2023-06-05 13:30:13 -07:00
examples Update domain 2023-04-20 19:27:38 -07:00
types Update for Lemmy v0.17.3 2023-06-05 13:30:13 -07:00
.gitignore Use autogenerated bindings for Lemmy 0.16.7 2023-01-05 12:51:45 -08:00
LICENSE Add GPLv3 license 2022-12-10 09:18:40 -08:00
README.md Move examples to examples directory 2023-01-08 00:47:32 -08:00
go.mod Update domain 2023-04-20 19:27:38 -07:00
go.sum Update domain 2023-04-20 19:27:38 -07:00
lemmy.go Update domain 2023-04-20 19:27:38 -07:00
routes.gen.go Update domain 2023-04-20 19:27:38 -07:00
websocket.go Update domain 2023-04-20 19:27:38 -07:00

README.md

Go-Lemmy

Go Reference

Go bindings to the Lemmy API, automatically generated directly from Lemmy's source code using the generator in cmd/gen.

Examples:

How to generate

First, build the generator:

go build ./cmd/gen

Clone Lemmy's source code at whatever version you need:

git clone https://github.com/LemmyNet/lemmy -b 0.16.7

Remove all the existing generated code:

rm **/*.gen.go

Execute the generator:

./gen -out-dir .

And that's it! Your generated code should be ready for use.