Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Latest commit

 

History

History
11 lines (7 loc) · 460 Bytes

File metadata and controls

11 lines (7 loc) · 460 Bytes

Controllers

This directory contains the application's controllers.

Controller Design Goals

Each controller is designed to achieve the following design goals:

  • Serve as the primary location for client request/response handling logic.
  • Sanitize and validate incoming requests and any raw input values provided by clients.
  • Invoke service and model methods as necessary to fulfill client requests.