Skip to main content

Connector Specification

Specification contains general information regarding the plugin like its name and what it does.

spec.go

This file defines the public-facing characteristics of the connector such as its name and capabilities. Begin by updating placeholder values with the specific details of your connector.

var version = "v0.1.0"

// Specification returns the connector's specification.
func Specification() sdk.Specification {
return sdk.Specification{
Name: "file-sync",
Summary: "<describe your connector>",
Description: "<describe your connector in detail>",
Version: version,
Author: "<your name>",
}
}

scarf pixel conduit-site-docs-connectors