Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 679 Bytes

Architecture.md

File metadata and controls

15 lines (10 loc) · 679 Bytes

Architecture

ImgurBar build with Clean Architecture approach using SOLID principles.

Core

The Core module contains all platform-agnostic protocols and data structures. It does not contain any business logic.

AppDelegate

The AppDelegate is a composition root of this project. It creates and combines all the objects into a working solution.

  • 🟢 Core
  • 🔵 API (Networking)
  • 🟠 Application (platform-specific logic)

ImgurBar Architecture