What am I doing wrong in Clean Architecture?
I got this .sln with seperation of concerns and i have an API that is supposed to fetch string data from any link. The chain I'm working on is the Contract (Models for request and responses) --> Application (Where the logic resides) --> API (Controller/where I invoke the url to get the data).
Contracts - Domain layer
Models that is reuse.
Application Layer- my business logic for getting data (http request) accepting multiple links in a List<string>();
Api - Presentation Layer
Where I expose the Url : /text/getText
1 Reply
there isn't right or wrong here really
as long as you can test it and modify it easily, it's good enough