acrostic
A pure Gleam implementation of Google Protobuf.
Note:
- only support proto3
- only support enum, message, repeated
- see
game.proto
gleam add acrostic
import acrostic
pub fn main() {
acrostic.gen(["game.proto"], to: "src/game.gleam", flags: acrostic.Flags(False, False))
}
Further documentation can be found at https://hexdocs.pm/acrostic.
Development
gleam run # Run the project
gleam test # Run the tests