-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Labels
Description
Implementar uma nova interface IURL.
Os Objetos que a implementam serão utilizamos nas chamadas de TAWSClient como argumento.
IAWSURL = interface
function Make: string;
function WithSubDomain(const SubDomain: string): IURL;
function WithResource(const Resource: string): IURL;
end;
- Implementar
IURL/TURL - UnitTests
- Refatorar
IAWSClient - Refatorar todas as chamadas do Client para
Client.Send(URL, Request)