mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-21 14:10:39 +00:00
fix v2 imports
This commit is contained in:
parent
2732be2d93
commit
0a9d469dff
12
README.md
12
README.md
@ -13,17 +13,17 @@ Helper library to reduce the boilerplate code for writing Drone CI plugins.
|
||||
### Download the package
|
||||
|
||||
```Shell
|
||||
go get -d github.com/thegeeklab/drone-plugin-lib/errors
|
||||
go get -d github.com/thegeeklab/drone-plugin-lib/urfave
|
||||
go get -d github.com/thegeeklab/drone-plugin-lib/drone
|
||||
go get -d github.com/thegeeklab/drone-plugin-lib/v2/errors
|
||||
go get -d github.com/thegeeklab/drone-plugin-lib/v2/urfave
|
||||
go get -d github.com/thegeeklab/drone-plugin-lib/v2/drone
|
||||
```
|
||||
|
||||
### Import the package
|
||||
|
||||
```Go
|
||||
import "github.com/thegeeklab/drone-plugin-lib/errors"
|
||||
import "github.com/thegeeklab/drone-plugin-lib/urfave"
|
||||
import "github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
import "github.com/thegeeklab/drone-plugin-lib/v2/errors"
|
||||
import "github.com/thegeeklab/drone-plugin-lib/v2/urfave"
|
||||
import "github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
```
|
||||
|
||||
## Contributors
|
||||
|
@ -9,7 +9,7 @@ package urfave
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -14,8 +14,8 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/trace"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/trace"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -9,7 +9,7 @@ package urfave
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
package urfave
|
||||
|
||||
import (
|
||||
"github.com/thegeeklab/drone-plugin-lib/drone"
|
||||
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user