6 lines
270 B
Python
6 lines
270 B
Python
|
import requests, os
|
||
|
__ircat_type__ = "sql.provider" # The type of module
|
||
|
__ircat_requires__ = ["cf_accountid", "cf_apitoken", "cf_d1database"] # The required config.yml entries.
|
||
|
class broker:
|
||
|
def __init__(self, cf_accountid, cf_apitoken, cf_d1database):
|
||
|
pass
|