mirror of
https://github.com/ferdzo/iotDashboard.git
synced 2026-04-05 09:06:26 +00:00
10 lines
142 B
Python
10 lines
142 B
Python
from gpt_service import GPTService
|
|
|
|
|
|
def main():
|
|
GPTService()
|
|
print("Hello from gpt-service!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |