mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-07 21:10:16 -04:00
13 lines
279 B
Python
13 lines
279 B
Python
from fastapi import Depends
|
|
from ..database import db_session
|
|
from sqlalchemy.orm import Session
|
|
|
|
|
|
class TagService:
|
|
|
|
def __init__(self, session: Session = Depends(db_session)):
|
|
self._session = session
|
|
|
|
#get all tags - emma
|
|
def get_all_tags():
|
|
return |