mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-06 05:27:24 +00:00
11 lines
264 B
Python
11 lines
264 B
Python
from golden_utils import flatc_golden
|
|
|
|
|
|
def flatc(options, schema):
|
|
# Wrap the golden flatc generator with Lobster specifics
|
|
flatc_golden(options=["--lobster"] + options, schema=schema, prefix="lobster")
|
|
|
|
|
|
def GenerateLobster():
|
|
flatc([], "basic.fbs")
|