mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-22 11:41:02 +02:00
Flow management API + various flow management commands trustgraph-cli/scripts/tg-delete-flow-class trustgraph-cli/scripts/tg-get-flow-class trustgraph-cli/scripts/tg-put-flow-class trustgraph-cli/scripts/tg-show-flow-classes trustgraph-cli/scripts/tg-show-flows trustgraph-cli/scripts/tg-start-flow trustgraph-cli/scripts/tg-stop-flow
21 lines
451 B
Python
21 lines
451 B
Python
|
|
from pulsar.schema import Record, String
|
|
|
|
from . types import Error, Value, Triple
|
|
from . topic import topic
|
|
from . metadata import Metadata
|
|
|
|
############################################################################
|
|
|
|
# Lookups
|
|
|
|
class LookupRequest(Record):
|
|
kind = String()
|
|
term = String()
|
|
|
|
class LookupResponse(Record):
|
|
text = String()
|
|
error = Error()
|
|
|
|
############################################################################
|
|
|