mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 21:21:57 -06:00
5 lines
114 B
Python
5 lines
114 B
Python
import ast, sys
|
|
with open('Data/Server/server.py','r',encoding='utf-8') as f:
|
|
ast.parse(f.read())
|
|
print('OK')
|