7 lines
163 B
Python
7 lines
163 B
Python
from sqlalchemy.orm import Session
|
|
|
|
from ....schema.library.path import Path
|
|
|
|
def delete(session:Session, path:Path):
|
|
session.delete(path)
|
|
session.commit() |