diff --git a/lib/backend/api_requests/api_calls.dart b/lib/backend/api_requests/api_calls.dart index 2a8838ec..29312482 100644 --- a/lib/backend/api_requests/api_calls.dart +++ b/lib/backend/api_requests/api_calls.dart @@ -2389,6 +2389,26 @@ class GetLiberationsCopyCall { .toList(); } +class TesteCall { + Future call() async { + final baseUrl = PhpGroup.getBaseUrl(); + + return ApiManager.instance.makeApiCall( + callName: 'teste', + apiUrl: '${baseUrl}est', + callType: ApiCallType.GET, + headers: {}, + params: {}, + returnBody: true, + encodeBodyUtf8: false, + decodeUtf8: false, + cache: false, + isStreamingApi: false, + alwaysAllowBody: false, + ); + } +} + /// End PHP Group Code class ApiPagingParams {