6 lines
186 B
Python
6 lines
186 B
Python
|
|
try:
|
||
|
|
import main
|
||
|
|
print('Main module imported successfully.')
|
||
|
|
# Add more import or function calls as needed
|
||
|
|
except Exception as e:
|
||
|
|
print(f'Error during verification: {e}')
|