12 lines
357 B
Python
12 lines
357 B
Python
|
A
|
from .open5gs import Open5GSAdapter
|
||
|
|
|
||
|
|
|
||
|
|
class Free5GCAdapter(Open5GSAdapter):
|
||
|
|
"""free5gc adapter — uses the same MongoDB document schema as Open5GS.
|
||
|
|
|
||
|
|
Override methods here as free5gc-specific behaviour is needed.
|
||
|
|
"""
|
||
|
|
|
||
|
|
def __init__(self, mongodb_uri: str, database_name: str = "free5gc"):
|
||
|
|
super().__init__(mongodb_uri, database_name)
|