Spaces:
Sleeping
Sleeping
from abc import ABC, abstractmethod | |
from typing import Generator | |
from pathlib import Path | |
from knowlang.configs.config import AppConfig | |
class CodeProvider(ABC): | |
"""Abstract base class for code source providers""" | |
def __init__(self, source_path: Path, config: AppConfig): | |
self.source_path = source_path | |
self.config = config | |
def get_files(self) -> Generator[Path, None, None]: | |
"""Yield paths to code files that should be processed""" | |
pass |