9 lines
229 B
Python
9 lines
229 B
Python
from persons.db import (
|
|
Person as Person,
|
|
create as create,
|
|
get_all as get_all,
|
|
get_by_id as get_by_id,
|
|
get_by_name as get_by_name,
|
|
insert_person as insert_person,
|
|
search_by_name as search_by_name,
|
|
)
|