Add files via upload

This commit is contained in:
Namhyeon Go 2023-09-07 20:33:19 +09:00 committed by GitHub
parent 64d8850d03
commit b81eae42d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@ import win32com
import win32com.client
import pythoncom
sys.path.insert(0, '')
sys.path.insert(0, os.path.dirname(__file__))
from concurrent import futures
import logging

View File

@ -6,8 +6,9 @@
from __future__ import print_function
import os
import sys
sys.path.insert(0, '')
sys.path.insert(0, os.path.dirname(__file__))
from concurrent import futures
import logging
@ -19,7 +20,7 @@ import WelsonAppLoader_pb2_grpc
def run():
with grpc.insecure_channel("localhost:50051") as channel:
stub = WelsonAppLoader_pb2_grpc.WelsonAppLoaderStub(channel)
response = stub.Run(WelsonAppLoader_pb2.AppRequest(appName="helloworld"))
response = stub.Run(WelsonAppLoader_pb2.AppRequest(appName="extramath-test"))
print("Response: " + response.responseText)
if __name__ == "__main__":