From db084e8b51b8330cbc788cdb5462f070496e3d2f Mon Sep 17 00:00:00 2001 From: Mostafa Moradian Date: Sat, 2 Sep 2023 22:22:23 +0200 Subject: [PATCH] Update the docs to mention the new JSON binary protocol --- developing-plugins/grpc-api-reference.md | 2 +- developing-plugins/index.md | 2 +- developing-plugins/plugin-developers-guide.md | 2 +- developing-plugins/sdk-reference.md | 16 ++++++++-------- developing-plugins/template-projects.md | 2 +- getting-started/index.md | 2 +- getting-started/installation.md | 2 +- getting-started/running-gatewayd.md | 2 +- getting-started/welcome.md | 2 +- miscellaneous/glossary.md | 2 +- miscellaneous/index.md | 2 +- miscellaneous/telemetry-and-usage-report.md | 2 +- plugins/gatewayd-plugin-cache.md | 2 +- plugins/index.md | 2 +- using-gatewayd/API.md | 2 +- using-gatewayd/CLI.md | 2 +- using-gatewayd/clients.md | 2 +- using-gatewayd/configuration.md | 10 +++++----- using-gatewayd/connection-lifecycle.md | 2 +- using-gatewayd/global-configuration/api.md | 2 +- using-gatewayd/global-configuration/clients.md | 2 +- using-gatewayd/global-configuration/index.md | 2 +- using-gatewayd/global-configuration/loggers.md | 2 +- using-gatewayd/global-configuration/metrics.md | 2 +- using-gatewayd/global-configuration/pools.md | 2 +- using-gatewayd/global-configuration/proxies.md | 2 +- using-gatewayd/global-configuration/servers.md | 2 +- using-gatewayd/index.md | 2 +- using-gatewayd/observability.md | 2 +- .../general-configurations.md | 2 +- using-gatewayd/plugins-configuration/index.md | 2 +- .../plugins-configuration.md | 2 +- using-gatewayd/pools.md | 2 +- using-gatewayd/protocols.md | 2 +- using-gatewayd/proxies.md | 2 +- using-gatewayd/servers.md | 2 +- using-plugins/hook-registry.md | 2 +- using-plugins/hooks.md | 2 +- using-plugins/index.md | 2 +- using-plugins/plugin-registry.md | 2 +- using-plugins/plugin-types.md | 2 +- using-plugins/plugins.md | 2 +- using-plugins/proposals.md | 2 +- 43 files changed, 54 insertions(+), 54 deletions(-) diff --git a/developing-plugins/grpc-api-reference.md b/developing-plugins/grpc-api-reference.md index 98f3583..b4d2c7d 100644 --- a/developing-plugins/grpc-api-reference.md +++ b/developing-plugins/grpc-api-reference.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: gRPC API Reference description: GatewayD exposes a gRPC API that can be used to interact with the GatewayD plugin system. This API can be used by the GatewayD plugins and is available in the GatewayD SDK. diff --git a/developing-plugins/index.md b/developing-plugins/index.md index 7f91ed5..f139772 100644 --- a/developing-plugins/index.md +++ b/developing-plugins/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Developing Plugins nav_order: 4 diff --git a/developing-plugins/plugin-developers-guide.md b/developing-plugins/plugin-developers-guide.md index 7ca3823..da932b1 100644 --- a/developing-plugins/plugin-developers-guide.md +++ b/developing-plugins/plugin-developers-guide.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugin Developers Guide description: Plugin developers' guide of GatewayD diff --git a/developing-plugins/sdk-reference.md b/developing-plugins/sdk-reference.md index c116ae2..1ca98c3 100644 --- a/developing-plugins/sdk-reference.md +++ b/developing-plugins/sdk-reference.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: SDK Reference description: The GatewayD plugin SDK provides a number of interfaces, structs and methods to help you build your plugin. @@ -43,22 +43,22 @@ The root of the SDK is the `github.com/gatewayd-io/gatewayd-plugin-sdk`. It cont func DecodeBytes(encoded string) ([]byte, error) ``` -- `HandleClientMessage` handles a client message. This function should be called from `onTrafficFromClient` hook. It returns a `structpb.Struct` with extra fields that are decoded from the message. It logs the error and returns `nil` if there is an error. +- `HandleClientMessage` handles a client message. This function should be called from `onTrafficFromClient` hook. It returns a `v1.Struct` with extra fields that are decoded from the message. It logs the error and returns `nil` if there is an error. ```go - func HandleClientMessage(req *structpb.Struct, logger hclog.Logger) (*structpb.Struct, error) + func HandleClientMessage(req *v1.Struct, logger hclog.Logger) (*v1.Struct, error) ``` -- `HandleServerMessage` handles a server message. This function should be called from `onTrafficFromServer` hook. It returns a `structpb.Struct` with extra fields that are decoded from the message. It logs the error and returns `nil` if there is an error. +- `HandleServerMessage` handles a server message. This function should be called from `onTrafficFromServer` hook. It returns a `v1.Struct` with extra fields that are decoded from the message. It logs the error and returns `nil` if there is an error. ```go - func HandleServerMessage(resp *structpb.Struct, logger hclog.Logger) (*structpb.Struct, error) + func HandleServerMessage(resp *v1.Struct, logger hclog.Logger) (*v1.Struct, error) ``` - `GetQueryFromRequest` decodes the request and returns the query. It returns an error if the request cannot be decoded. It returns an empty string if the query is not found. ```go - func GetQueryFromRequest(req *structpb.Struct) (string, error) + func GetQueryFromRequest(req *v1.Struct) (string, error) ``` - `GetTablesFromQuery` returns the tables used in a query. It returns an error if the query cannot be parsed. @@ -97,10 +97,10 @@ The root of the SDK is the `github.com/gatewayd-io/gatewayd-plugin-sdk`. It cont func DefaultGRPCServer(opts []grpc.ServerOption) *grpc.Server ``` -- `GetAttr` returns the value of an attribute from the `structpb.Struct`. It returns the default value if the attribute is not found. +- `GetAttr` returns the value of an attribute from the `v1.Struct`. It returns the default value if the attribute is not found. ```go - func GetAttr(req *structpb.Struct, key string, defaultValue interface{}) interface{} + func GetAttr(req *v1.Struct, key string, defaultValue interface{}) interface{} ``` ### `plugin/v1` diff --git a/developing-plugins/template-projects.md b/developing-plugins/template-projects.md index 27c98b5..725899a 100644 --- a/developing-plugins/template-projects.md +++ b/developing-plugins/template-projects.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Template Projects description: Template projects can be used to quickly get started with developing plugins. diff --git a/getting-started/index.md b/getting-started/index.md index 6eddb72..04c63ea 100644 --- a/getting-started/index.md +++ b/getting-started/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Getting Started nav_order: 1 diff --git a/getting-started/installation.md b/getting-started/installation.md index fe74fd3..62349a1 100644 --- a/getting-started/installation.md +++ b/getting-started/installation.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Installation description: How to install GatewayD and its plugins on different platforms and how to build it from source. diff --git a/getting-started/running-gatewayd.md b/getting-started/running-gatewayd.md index e04dcfa..58af927 100644 --- a/getting-started/running-gatewayd.md +++ b/getting-started/running-gatewayd.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Running GatewayD description: How to run GatewayD and test it with psql diff --git a/getting-started/welcome.md b/getting-started/welcome.md index 95f7bb9..f5013e4 100644 --- a/getting-started/welcome.md +++ b/getting-started/welcome.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Welcome description: Introduction to GatewayD and its key features diff --git a/miscellaneous/glossary.md b/miscellaneous/glossary.md index eca1e50..79a6d40 100644 --- a/miscellaneous/glossary.md +++ b/miscellaneous/glossary.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Glossary description: Glossary of GatewayD terms diff --git a/miscellaneous/index.md b/miscellaneous/index.md index aab317b..ab22158 100644 --- a/miscellaneous/index.md +++ b/miscellaneous/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Miscellaneous nav_order: 6 diff --git a/miscellaneous/telemetry-and-usage-report.md b/miscellaneous/telemetry-and-usage-report.md index 4574e17..81d6e6f 100644 --- a/miscellaneous/telemetry-and-usage-report.md +++ b/miscellaneous/telemetry-and-usage-report.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Telemetry and Usage Report description: Telemetry and usage report of GatewayD diff --git a/plugins/gatewayd-plugin-cache.md b/plugins/gatewayd-plugin-cache.md index 1b96451..167c810 100644 --- a/plugins/gatewayd-plugin-cache.md +++ b/plugins/gatewayd-plugin-cache.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: gatewayd-plugin-cache description: GatewayD plugin for caching query results in Redis. diff --git a/plugins/index.md b/plugins/index.md index 07371aa..71f6172 100644 --- a/plugins/index.md +++ b/plugins/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugins nav_order: 5 diff --git a/using-gatewayd/API.md b/using-gatewayd/API.md index 91706b6..54bccbb 100644 --- a/using-gatewayd/API.md +++ b/using-gatewayd/API.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: API description: GatewayD exposes a gRPC API with an HTTP gateway for querying and managing the `gatewayd` process and its plugins. diff --git a/using-gatewayd/CLI.md b/using-gatewayd/CLI.md index e318d48..9f2e7a1 100644 --- a/using-gatewayd/CLI.md +++ b/using-gatewayd/CLI.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: CLI description: GatewayD is a CLI application that runs on Windows, Linux-based distributions and macOS. diff --git a/using-gatewayd/clients.md b/using-gatewayd/clients.md index 381baf4..c33a69d 100644 --- a/using-gatewayd/clients.md +++ b/using-gatewayd/clients.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Clients description: Client object is a client that can connect to the database servers over TCP, UDP and Unix Domain Socket. diff --git a/using-gatewayd/configuration.md b/using-gatewayd/configuration.md index b64046c..d6db4af 100644 --- a/using-gatewayd/configuration.md +++ b/using-gatewayd/configuration.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Configuration description: GatewayD is fully configurable via various sources, including default values, YAML config files, environment variables, CLI flags and plugins. @@ -181,13 +181,13 @@ GatewayD allows plugins to update the global configuration at runtime. This is d An example of this update can be found in the [Go plugin template](https://github.com/gatewayd-io/plugin-template-go/blob/981b36aa62b4ba059656c6dde08f67a9206c0948/plugin/plugin.go#L54-L129). The following snippet shows how to update the global configuration at runtime: ```go -func (p *Plugin) OnConfigLoaded(ctx context.Context, req *structpb.Struct) (*structpb.Struct, error) { +func (p *Plugin) OnConfigLoaded(ctx context.Context, req *v1.Struct) (*v1.Struct, error) { if req.Fields == nil { - req.Fields = make(map[string]*structpb.Value) + req.Fields = make(map[string]*v1.Value) } - req.Fields["loggers.default.level"] = structpb.NewStringValue("debug") - req.Fields["loggers.default.noColor"] = structpb.NewBoolValue(false) + req.Fields["loggers.default.level"] = v1.NewStringValue("debug") + req.Fields["loggers.default.noColor"] = v1.NewBoolValue(false) return req, nil } diff --git a/using-gatewayd/connection-lifecycle.md b/using-gatewayd/connection-lifecycle.md index f18edbf..5feaf76 100644 --- a/using-gatewayd/connection-lifecycle.md +++ b/using-gatewayd/connection-lifecycle.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Connection Lifecycle description: Connection Lifecycle of GatewayD diff --git a/using-gatewayd/global-configuration/api.md b/using-gatewayd/global-configuration/api.md index 2966977..4bb3447 100644 --- a/using-gatewayd/global-configuration/api.md +++ b/using-gatewayd/global-configuration/api.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: API description: GatewayD gRPC API configuration diff --git a/using-gatewayd/global-configuration/clients.md b/using-gatewayd/global-configuration/clients.md index bf7433d..b83f96c 100644 --- a/using-gatewayd/global-configuration/clients.md +++ b/using-gatewayd/global-configuration/clients.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Clients description: GatewayD client configuration diff --git a/using-gatewayd/global-configuration/index.md b/using-gatewayd/global-configuration/index.md index cab31ba..61b83bf 100644 --- a/using-gatewayd/global-configuration/index.md +++ b/using-gatewayd/global-configuration/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Global Configuration nav_order: 2 diff --git a/using-gatewayd/global-configuration/loggers.md b/using-gatewayd/global-configuration/loggers.md index f4547db..54eb6df 100644 --- a/using-gatewayd/global-configuration/loggers.md +++ b/using-gatewayd/global-configuration/loggers.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Loggers description: GatewayD logger configuration diff --git a/using-gatewayd/global-configuration/metrics.md b/using-gatewayd/global-configuration/metrics.md index 2508dd8..325a506 100644 --- a/using-gatewayd/global-configuration/metrics.md +++ b/using-gatewayd/global-configuration/metrics.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Metrics description: GatewayD metrics configuration diff --git a/using-gatewayd/global-configuration/pools.md b/using-gatewayd/global-configuration/pools.md index 26aeba1..e392fde 100644 --- a/using-gatewayd/global-configuration/pools.md +++ b/using-gatewayd/global-configuration/pools.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Pools description: GatewayD pool configuration diff --git a/using-gatewayd/global-configuration/proxies.md b/using-gatewayd/global-configuration/proxies.md index e4f13b3..520197a 100644 --- a/using-gatewayd/global-configuration/proxies.md +++ b/using-gatewayd/global-configuration/proxies.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Proxies description: GatewayD proxy configuration diff --git a/using-gatewayd/global-configuration/servers.md b/using-gatewayd/global-configuration/servers.md index aa955f9..5afa3df 100644 --- a/using-gatewayd/global-configuration/servers.md +++ b/using-gatewayd/global-configuration/servers.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Servers description: GatewayD server configuration diff --git a/using-gatewayd/index.md b/using-gatewayd/index.md index 7b93411..257173f 100644 --- a/using-gatewayd/index.md +++ b/using-gatewayd/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Using GatewayD nav_order: 2 diff --git a/using-gatewayd/observability.md b/using-gatewayd/observability.md index 7e375b7..fc02675 100644 --- a/using-gatewayd/observability.md +++ b/using-gatewayd/observability.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Observability description: Observability is a first-class citizen of GatewayD. It generates logs, metrics and traces to make it easier to see what is going on inside. diff --git a/using-gatewayd/plugins-configuration/general-configurations.md b/using-gatewayd/plugins-configuration/general-configurations.md index b8f0029..1f57807 100644 --- a/using-gatewayd/plugins-configuration/general-configurations.md +++ b/using-gatewayd/plugins-configuration/general-configurations.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: General configurations description: General configurations for plugins diff --git a/using-gatewayd/plugins-configuration/index.md b/using-gatewayd/plugins-configuration/index.md index 7b795c6..2a01b3a 100644 --- a/using-gatewayd/plugins-configuration/index.md +++ b/using-gatewayd/plugins-configuration/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugins Configuration nav_order: 3 diff --git a/using-gatewayd/plugins-configuration/plugins-configuration.md b/using-gatewayd/plugins-configuration/plugins-configuration.md index ffc6e34..3f2b02b 100644 --- a/using-gatewayd/plugins-configuration/plugins-configuration.md +++ b/using-gatewayd/plugins-configuration/plugins-configuration.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugins configuration description: GatewayD plugins configuration diff --git a/using-gatewayd/pools.md b/using-gatewayd/pools.md index 6d01079..6ccc2e7 100644 --- a/using-gatewayd/pools.md +++ b/using-gatewayd/pools.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Pools description: GatewayD has a generic internal pool object that is used to manage plugins and connections. diff --git a/using-gatewayd/protocols.md b/using-gatewayd/protocols.md index eef6426..a6aa3db 100644 --- a/using-gatewayd/protocols.md +++ b/using-gatewayd/protocols.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Protocols description: GatewayD is application layer protocol-agnostic. This means that GatewayD *can* practically support any protocol in the application layer, or L7. diff --git a/using-gatewayd/proxies.md b/using-gatewayd/proxies.md index 23f5ff8..47f01a5 100644 --- a/using-gatewayd/proxies.md +++ b/using-gatewayd/proxies.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Proxies description: Proxy object is used to create a binding between incoming connections from the database clients to the database servers. diff --git a/using-gatewayd/servers.md b/using-gatewayd/servers.md index b2be08d..2a47282 100644 --- a/using-gatewayd/servers.md +++ b/using-gatewayd/servers.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Servers description: Server is an object that listens on an address:port pair and accepts connections from database clients. diff --git a/using-plugins/hook-registry.md b/using-plugins/hook-registry.md index a84d7ee..3783906 100644 --- a/using-plugins/hook-registry.md +++ b/using-plugins/hook-registry.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Hook registry description: The hook registry is a central place where all hooks are registered and executed. It is used by the plugin registry to register and execute plugin hooks. diff --git a/using-plugins/hooks.md b/using-plugins/hooks.md index 4adbf52..af5ef17 100644 --- a/using-plugins/hooks.md +++ b/using-plugins/hooks.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Hooks description: Plugins can be used to modify the connection lifecycle. Each step in the connection lifecycle is represented by one or more plugin hook(s). Plugins can register themselves to be called when a specific hook is triggered. diff --git a/using-plugins/index.md b/using-plugins/index.md index 5787687..366ff51 100644 --- a/using-plugins/index.md +++ b/using-plugins/index.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Using Plugins nav_order: 3 diff --git a/using-plugins/plugin-registry.md b/using-plugins/plugin-registry.md index 23b567a..22b86c4 100644 --- a/using-plugins/plugin-registry.md +++ b/using-plugins/plugin-registry.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugin registry description: The plugin registry is a central place where all plugins are loaded, configured and executed, and also the main entry point for all plugins. diff --git a/using-plugins/plugin-types.md b/using-plugins/plugin-types.md index 51fff01..c8deb7f 100644 --- a/using-plugins/plugin-types.md +++ b/using-plugins/plugin-types.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugin types description: > diff --git a/using-plugins/plugins.md b/using-plugins/plugins.md index be37be5..4b356a4 100644 --- a/using-plugins/plugins.md +++ b/using-plugins/plugins.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Plugins description: Plugins play a very important role in GatewayD for adding support for different databases. They are the building blocks of GatewayD, and they are responsible for the majority of the functionality of GatewayD. diff --git a/using-plugins/proposals.md b/using-plugins/proposals.md index 8516d6e..2524f17 100644 --- a/using-plugins/proposals.md +++ b/using-plugins/proposals.md @@ -1,5 +1,5 @@ --- -last_modified_date: 2023-08-16 23:51:12 +0200 +last_modified_date: 2023-09-01 14:29:52 +0200 layout: default title: Proposals description: GatewayD proposals are used to propose new ideas and features for GatewayD.