summaryrefslogtreecommitdiff
path: root/lib9p/core.gen
blob: b30ec3160c9e61ed76dc831e43d5bafb0575a461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# lib9p/core.gen - Generate C marshalers/unmarshalers for .9p files
#                  defining 9P protocol variants.
#
# Copyright (C) 2024-2025  Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later

import os.path
import sys

sys.path.insert(0, os.path.normpath(os.path.join(__file__, "..")))
import core_gen  # pylint: disable=wrong-import-position

if __name__ == "__main__":
    core_gen.main()