aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/TangoDAOJavaFile.cshtml
blob: 46bd6532c89756ae713dfc5a388dc0641e659d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
generated by cgit v1.3.1 (git 2.54.0) at 2026-07-31 21:22:04 +0000
 


"c1">/// <seealso cref="Tango.Protobuf.ProtoCompiler" />
    public class PythonCompiler : ProtoCompiler
    {
        /// <summary>
        /// Gets the compiler language.
        /// </summary>
        public override CompilerLanguage Language => CompilerLanguage.Python;

        /// <summary>
        /// Gets the protobuf compiler CLI arguments (without input/output files!).
        /// </summary>
        /// <returns></returns>
        protected override string GetProtoArguments()
        {
            return "--python_out";
        }
    }
}