15 lines
457 B
Python
15 lines
457 B
Python
from persons.db import (
|
|
Person as Person,
|
|
create as create,
|
|
get_all as get_all,
|
|
get_all_paged as get_all_paged,
|
|
search_by_name_paged as search_by_name_paged,
|
|
count_all as count_all,
|
|
count_by_name as count_by_name,
|
|
compute_prev_cursor as compute_prev_cursor,
|
|
get_by_id as get_by_id,
|
|
get_by_name as get_by_name,
|
|
get_by_ids as get_by_ids,
|
|
insert_person as insert_person,
|
|
search_by_name as search_by_name,
|
|
)
|