refactor (#283)
This commit is contained in:
@@ -25,9 +25,10 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Plugin struct {
|
type Plugin struct {
|
||||||
Api *spec.ApiSpec
|
Api *spec.ApiSpec
|
||||||
Style string
|
ApiFilePath string
|
||||||
Dir string
|
Style string
|
||||||
|
Dir string
|
||||||
}
|
}
|
||||||
|
|
||||||
func PluginCommand(c *cli.Context) error {
|
func PluginCommand(c *cli.Context) error {
|
||||||
@@ -86,6 +87,12 @@ func prepareArgs(c *cli.Context) ([]byte, error) {
|
|||||||
transferData.Api = api
|
transferData.Api = api
|
||||||
}
|
}
|
||||||
|
|
||||||
|
absApiFilePath, err := filepath.Abs(apiPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
transferData.ApiFilePath = absApiFilePath
|
||||||
dirAbs, err := filepath.Abs(c.String("dir"))
|
dirAbs, err := filepath.Abs(c.String("dir"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|||||||
Reference in New Issue
Block a user