Skip to content

Instantly share code, notes, and snippets.

@zehpatricio
Created March 30, 2022 20:01
Show Gist options
  • Save zehpatricio/a3226a904e42189da6364fc3dd7ae9d1 to your computer and use it in GitHub Desktop.
Save zehpatricio/a3226a904e42189da6364fc3dd7ae9d1 to your computer and use it in GitHub Desktop.
from app.domain.repository import location_repository
class BaseLocationUseCase():
def __init__(
self,
repository: location_repository.LocationRepository
) -> None:
self.repository = repository
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment