File size: 647 Bytes
7a1d414
 
 
9bc957e
7a1d414
 
 
 
600587b
7a1d414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
600587b
7a1d414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""Configuration exports for the sdgen package.

This module re-exports commonly used configuration paths and settings
so they can be imported directly from `sdgen.config`.
"""

from __future__ import annotations

from .lora_urls import LORA_URLS
from .paths import (
    ASSETS_ROOT,
    HISTORY_ENTRIES_DIR,
    HISTORY_FULL_DIR,
    HISTORY_ROOT,
    HISTORY_THUMBS_DIR,
    LOGS_ROOT,
    PROJECT_ROOT,
)
from .settings import AppSettings

__all__ = [
    "AppSettings",
    "PROJECT_ROOT",
    "ASSETS_ROOT",
    "HISTORY_ROOT",
    "HISTORY_ENTRIES_DIR",
    "HISTORY_THUMBS_DIR",
    "HISTORY_FULL_DIR",
    "LOGS_ROOT",
    "LORA_URLS",
]