Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 870 Bytes

File metadata and controls

16 lines (13 loc) · 870 Bytes

Project Overview


Application Hierarchy

Project Structure

Project Structure

This application strives to keep application code separated using the principles of Clean Architecture

The TL;DR of this is:

  • Separate code by concern. (Ex: database models do not belong in the Networking project)
  • Attempt to stick to SOLID principles by making each function have one purpose only. Split logic into private singular functions if necessary
  • Project structure should closely resemble an "onion" by separating logic into new projects/libraries as deemed necessary
  • Follow the Rule of Three when creating abstractions