summaryrefslogtreecommitdiff
path: root/lib9p/core.gen
blob: 24f66de7ca65a7cf27cd96bfef55bbbf71fbc691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
# 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()