mirror of
https://github.com/platomav/BIOSUtilities.git
synced 2025-05-09 13:52:00 -04:00
16 lines
353 B
Python
16 lines
353 B
Python
#!/usr/bin/env python3
|
|
#coding=utf-8
|
|
|
|
"""
|
|
Copyright (C) 2022 Plato Mavropoulos
|
|
"""
|
|
|
|
# https://github.com/allowitsme/big-tool by Dmitry Frolov
|
|
# https://github.com/platomav/BGScriptTool by Plato Mavropoulos
|
|
def get_bgs_tool():
|
|
try:
|
|
from external.big_script_tool import BigScript
|
|
except:
|
|
BigScript = None
|
|
|
|
return BigScript
|