(args)
| 25 | |
| 26 | |
| 27 | def get_datasources(args): |
| 28 | config = get_config() |
| 29 | |
| 30 | url = f'{config["API_URL_BASE"]}/api/datasources' |
| 31 | resp = call_get_datasources_api(url) |
| 32 | |
| 33 | print(resp.text) |
| 34 | |
| 35 | return resp.text |
| 36 | |
| 37 | |
| 38 | def call_create_datasource_api(url, payload): |