Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
chore(json): disaable json operator temporarily (#44)
Browse files Browse the repository at this point in the history
Because

- we haven't coordinated the JSON data format in start operator yet.

This commit

- disable json operator temporarily
  • Loading branch information
donch1989 authored Nov 27, 2023
1 parent dc648a3 commit 468404a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"github.com/instill-ai/operator/pkg/base64"
"github.com/instill-ai/operator/pkg/end"
"github.com/instill-ai/operator/pkg/image"
"github.com/instill-ai/operator/pkg/json"
"github.com/instill-ai/operator/pkg/start"
"github.com/instill-ai/operator/pkg/text"
)
Expand All @@ -37,7 +36,7 @@ func Init(logger *zap.Logger) base.IOperator {
operator.(*Operator).ImportDefinitions(base64.Init(logger))
operator.(*Operator).ImportDefinitions(start.Init(logger))
operator.(*Operator).ImportDefinitions(end.Init(logger))
operator.(*Operator).ImportDefinitions(json.Init(logger))
// operator.(*Operator).ImportDefinitions(json.Init(logger))
operator.(*Operator).ImportDefinitions(image.Init(logger))
operator.(*Operator).ImportDefinitions(text.Init(logger))

Expand Down

0 comments on commit 468404a

Please sign in to comment.