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