mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 14:43:08 +00:00
12 lines
248 B
Python
12 lines
248 B
Python
|
#!/usr/bin/env python3
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
import pathlib
|
||
|
import sys
|
||
|
|
||
|
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
|
||
|
|
||
|
from m1n1.setup import *
|
||
|
from m1n1.ishell import run_ishell
|
||
|
|
||
|
run_ishell(globals(), msg="Have fun!")
|