File size: 451 Bytes
7952f32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Action surface for GraphForge.

Public API:

    from graphforge.actions import dispatch, ActionResult
    from graphforge.actions.schema import Action, AddNode, ...
    from graphforge.actions.errors import ActionError

See PROPOSAL.md §4 for the full action vocabulary.
"""

from graphforge.actions.dispatcher import ActionResult, dispatch
from graphforge.actions.errors import ActionError

__all__ = ["ActionError", "ActionResult", "dispatch"]