mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
b4f89569c8
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4467 GitOrigin-RevId: 5e81d8581197c90ad2de9106e724c63d7592ae72
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
|