Commit 2031d73 1 parent d943794 commit 2031d73 Copy full SHA for 2031d73
File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ package main
16
16
17
17
import (
18
18
"github.com/bufbuild/protoplugin"
19
- "github.com/bufbuild/protoschema-plugins/cmd "
19
+ "github.com/bufbuild/protoschema-plugins/internal "
20
20
"github.com/bufbuild/protoschema-plugins/internal/protoschema/plugin/pluginjsonschema"
21
21
)
22
22
23
23
func main () {
24
- protoplugin .Main (protoplugin .HandlerFunc (pluginjsonschema .Handle ), protoplugin .WithVersion (cmd .Version ()))
24
+ protoplugin .Main (protoplugin .HandlerFunc (pluginjsonschema .Handle ), protoplugin .WithVersion (internal .Version ()))
25
25
}
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ package main
16
16
17
17
import (
18
18
"github.com/bufbuild/protoplugin"
19
- "github.com/bufbuild/protoschema-plugins/cmd "
19
+ "github.com/bufbuild/protoschema-plugins/internal "
20
20
"github.com/bufbuild/protoschema-plugins/internal/protoschema/plugin/pluginpubsub"
21
21
)
22
22
23
23
func main () {
24
- protoplugin .Main (protoplugin .HandlerFunc (pluginpubsub .Handle ), protoplugin .WithVersion (cmd .Version ()))
24
+ protoplugin .Main (protoplugin .HandlerFunc (pluginpubsub .Handle ), protoplugin .WithVersion (internal .Version ()))
25
25
}
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ package main
16
16
17
17
import (
18
18
"github.com/bufbuild/protoplugin"
19
- "github.com/bufbuild/protoschema-plugins/cmd "
19
+ "github.com/bufbuild/protoschema-plugins/internal "
20
20
"github.com/bufbuild/protoschema-plugins/internal/protoschema/plugin/pluginsourceinfo"
21
21
)
22
22
23
23
func main () {
24
- protoplugin .Main (protoplugin .HandlerFunc (pluginsourceinfo .Handle ), protoplugin .WithVersion (cmd .Version ()))
24
+ protoplugin .Main (protoplugin .HandlerFunc (pluginsourceinfo .Handle ), protoplugin .WithVersion (internal .Version ()))
25
25
}
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- package cmd
15
+ package internal
16
16
17
17
import (
18
18
"runtime/debug"
You can’t perform that action at this time.
0 commit comments