mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-08 01:02:04 +08:00
10 lines
200 B
Python
Executable File
10 lines
200 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from cpp.generate import GenerateCpp
|
|
from csharp.generate import GenerateCSharp
|
|
|
|
# Run each language generation logic
|
|
GenerateCpp()
|
|
GenerateCSharp()
|
|
|
|
# TODO add other languages |