9 lines
180 B
Python
9 lines
180 B
Python
|
import typing
|
||
|
|
||
|
import mgp
|
||
|
|
||
|
|
||
|
@mgp.read_proc
|
||
|
def components(context: mgp.ProcCtx) -> mgp.Record(versions=list, edition=str):
|
||
|
return mgp.Record(versions=["4.3"], edition="4.3.2")
|