A Minecraft datapack generator written in go.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 134 B view raw
1package generator 2 3type Feature interface { 4 Type() string 5 Emit() (File, error) 6} 7 8type File struct { 9 Path string 10 Content []byte 11}