Skip to content

Commit

Permalink
fix : dir
Browse files Browse the repository at this point in the history
  • Loading branch information
seipan committed Sep 13, 2023
1 parent edbead1 commit 2a6788c
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 12 deletions.
5 changes: 0 additions & 5 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/*
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/
package cmd

Expand All @@ -10,8 +9,6 @@ import (
"github.com/spf13/cobra"
)



// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "bluma",
Expand Down Expand Up @@ -47,5 +44,3 @@ func init() {
// when this action is called directly.
rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}


2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.20

require (
github.com/getkin/kin-openapi v0.120.0
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.4
github.com/tsenart/vegeta v12.7.0+incompatible
)
Expand All @@ -22,7 +23,6 @@ require (
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/perimeterx/marshmallow v1.1.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/cobra v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/streadway/quantile v0.0.0-20220407130108-4246515d968d // indirect
golang.org/x/net v0.14.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion pkg/attack.go → lib/attack.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package lib

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion pkg/attack_test.go → lib/attack_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package lib

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/openapi.go → lib/openapi.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package lib

import "github.com/getkin/kin-openapi/openapi3"

Expand Down
2 changes: 1 addition & 1 deletion pkg/parse_openapi.go → lib/parse_openapi.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package lib

import (
"context"
Expand Down
2 changes: 1 addition & 1 deletion pkg/parse_openapi_test.go → lib/parse_openapi_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package lib

import (
"context"
Expand Down
2 changes: 1 addition & 1 deletion pkg/vegeta.go → lib/vegeta.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package lib

import (
"net/http"
Expand Down

0 comments on commit 2a6788c

Please sign in to comment.