nfdos/src/nfdos.in
neoricalex 666bf0b1bd
Some checks are pending
Build NFDOS ISO / build (push) Waiting to run
Primeiro Commit
2025-11-11 04:35:55 +01:00

12 lines
210 B
Python

#!/usr/bin/env python
import sys
sys.path.insert(1, '@pythondir@')
from bootstrap import Application
if __name__ == "__main__":
app = Application(package="@PACKAGE@", version="@VERSION@")
app.run()