File tree Expand file tree Collapse file tree
internal/pkg/llm/twinformat Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ import (
99 "github.com/keboola/keboola-as-code/internal/pkg/llm/twinformat/configparser"
1010)
1111
12+ // Type aliases for types defined in configparser package.
13+ type (
14+ TransformationConfig = configparser.TransformationConfig
15+ StorageMapping = configparser.StorageMapping
16+ CodeBlock = configparser.CodeBlock
17+ Code = configparser.Code
18+ ComponentConfig = configparser.ComponentConfig
19+ )
20+
1221// ProjectData holds all fetched data from Keboola APIs.
1322type ProjectData struct {
1423 ProjectID keboola.ProjectID
@@ -220,15 +229,6 @@ type LineageMetaData struct {
220229 Updated string `json:"updated"`
221230}
222231
223- // Type aliases for types defined in configparser package.
224- type (
225- TransformationConfig = configparser.TransformationConfig
226- StorageMapping = configparser.StorageMapping
227- CodeBlock = configparser.CodeBlock
228- Code = configparser.Code
229- ComponentConfig = configparser.ComponentConfig
230- )
231-
232232// DocFields represents the standard documentation fields for JSON files.
233233type DocFields struct {
234234 Comment string `json:"_comment"`
You can’t perform that action at this time.
0 commit comments