fastapi_django_main_live / contbk /ai /src /google_apps_service.py
miyataken999
update
3934e0b
raw
history blame contribute delete
277 Bytes
from google_apps_script import GoogleAppsScript
class GoogleAppsService:
def __init__(self, script_id):
self.script = GoogleAppsScript(script_id)
def execute_script(self, function_name, params):
return self.script.execute_script(function_name, params)