6 lines
191 B
Python
6 lines
191 B
Python
from .database import *
|
|
from .s0_base import *
|
|
import json
|
|
|
|
def get_all_burst_locate_results(name: str) -> list[dict[Any, Any]]:
|
|
return read_all(name, "select * from burst_locate_result") |