1#!/usr/local/bin/python3.8
2
3"""
4Openage can, and should, be launched via python3 -m openage.
5
6However, for dynamic analysis using LLVM's sanitizer, a self-compiled
7executable is needed.
8
9This file is Cythonized with an embedded interpreter, producing ./run,
10which satisifies that requirement.
11"""
12
13if __name__ == '__main__':
14    from openage.__main__ import main
15    main()
16