mirror of
http://10.0.2.1:3031/sauer/claw-code.git
synced 2026-06-30 10:07:03 +10:00
11 lines
184 B
Python
11 lines
184 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class ProjectOnboardingState:
|
|
has_readme: bool
|
|
has_tests: bool
|
|
python_first: bool = True
|