summaryrefslogtreecommitdiff
path: root/modules/tools/python/c_generate_iface.py
blob: d234482f8e73b7fbae46e781133e67ae054aaa1a (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
#!/usr/bin/env python3

import argparse;
import jinja2;


def parse_args():
    parser = argparse.ArgumentParser(
        description = "Generates bindings for the Interface schema"
    );
    parser.add_argument(
        '-t', '--template',
        required=True,
        help = "Path to the template directory"
    );

    return parser.parse_args();

def main():
   return 0;

if __name__ == "__main__":
   rc = main();
   exit(rc);