From 209dda1917bebd78664b734c2ddca719c91ff6c5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 23:47:39 +0000 Subject: [PATCH] Add example projects --- examples/complex_project/config.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/complex_project/config.py diff --git a/examples/complex_project/config.py b/examples/complex_project/config.py new file mode 100644 index 0000000..1ee3bf0 --- /dev/null +++ b/examples/complex_project/config.py @@ -0,0 +1,14 @@ +""" +Application configuration. +""" + +from dataclasses import dataclass + + +@dataclass +class AppConfig: + """Application configuration.""" + debug: bool = False + max_retries: int = 3 + timeout: int = 30 + api_url: str = "https://api.example.com"