using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Protobuf.Compilers { /// /// Represents a protobuf Python Compiler. /// /// public class PythonCompiler : ProtoCompiler { /// /// Gets the compiler language. /// public override CompilerLanguage Language => CompilerLanguage.Python; /// /// Gets the protobuf compiler CLI arguments (without input/output files!). /// /// protected override string GetProtoArguments() { return "--python_out"; } } }