localAdminService implements drivers.AdminService by using user's admin token stored locally and calling Rill's admin API.
| 15 | |
| 16 | // localAdminService implements drivers.AdminService by using user's admin token stored locally and calling Rill's admin API. |
| 17 | type localAdminService struct { |
| 18 | ch *cmdutil.Helper |
| 19 | root string |
| 20 | environment string |
| 21 | frontendURL string |
| 22 | } |
| 23 | |
| 24 | var ( |
| 25 | _ drivers.AdminService = &localAdminService{} |
nothing calls this directly
no outgoing calls
no test coverage detected