mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
10 lines
184 B
Python
10 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
|