mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
10 lines
203 B
Python
10 lines
203 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
import os
|
|
from cme.paths import DATA_PATH
|
|
|
|
|
|
def get_script(path):
|
|
with open(os.path.join(DATA_PATH, path), 'r') as script:
|
|
return script.read()
|