gabykim's picture
refactor package name to knowlang
60532a1
raw
history blame
531 Bytes
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"""
@abstractmethod
def __init__(self, source_path: Path, config: AppConfig):
self.source_path = source_path
self.config = config
@abstractmethod
def get_files(self) -> Generator[Path, None, None]:
"""Yield paths to code files that should be processed"""
pass