feat(init): Prepare Project skeleton structure
This commit is contained in:
13
helpers/api_types/go_swagger/create_project_skeleton.go
Normal file
13
helpers/api_types/go_swagger/create_project_skeleton.go
Normal file
@ -0,0 +1,13 @@
|
||||
package go_swagger
|
||||
|
||||
import (
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
// CreateProjectSkeleton will generate all the files needed to start a new project.
|
||||
// it will return a list of created files or an error
|
||||
func (a APIType) CreateProjectSkeleton(path string) ([]string, error) {
|
||||
log.Debugf("Starting %s create project skeleton", string(a.GetName()))
|
||||
|
||||
return nil, nil
|
||||
}
|
Reference in New Issue
Block a user