12 lines
324 B
Python
12 lines
324 B
Python
|
|
"""
|
||
|
|
GraphQL interface for MarkiTect - Issue #9
|
||
|
|
|
||
|
|
This package provides a GraphQL read interface for querying MarkiTect's
|
||
|
|
database content including Markdown files, ASTs, and schemas.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .schema import schema
|
||
|
|
from .server import GraphQLServer
|
||
|
|
from .resolvers import Query
|
||
|
|
|
||
|
|
__all__ = ['schema', 'GraphQLServer', 'Query']
|