Skip to content

Commit

Permalink
Adding inspect blob commands
Browse files Browse the repository at this point in the history
Signed-off-by: Rishab Semlani <[email protected]>
  • Loading branch information
rrsemlani committed Feb 13, 2024
1 parent a0fff85 commit 3b75784
Show file tree
Hide file tree
Showing 9 changed files with 386 additions and 761 deletions.
232 changes: 0 additions & 232 deletions cmd/notation/blob.go

This file was deleted.

30 changes: 30 additions & 0 deletions cmd/notation/blob/cmd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Copyright The Notary Project Authors.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package blob

import "github.com/spf13/cobra"

func Cmd() *cobra.Command {
command := &cobra.Command{
Use: "blob [command]",
Short: "Commands for BLOB artifacts",
}

command.AddCommand(
inspectCommand(nil),
signCommand(nil),
)

return command
}
Loading

0 comments on commit 3b75784

Please sign in to comment.