mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
17 lines
482 B
Haskell
17 lines
482 B
Haskell
|
module Hasura.Backends.DataConnector.Agent.Schema
|
||
|
( schemaHandler,
|
||
|
)
|
||
|
where
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
import Hasura.Backends.DataConnector.API qualified as API
|
||
|
import Hasura.Backends.DataConnector.Agent.Data
|
||
|
import Servant.Server
|
||
|
import Prelude
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
schemaHandler :: API.Config -> Handler API.SchemaResponse
|
||
|
schemaHandler _config = pure schema
|