KennethanCeyer/gowap

View on GitHub
action/archive.go

Summary

Maintainability
A
0 mins
Test Coverage
package action

import (
    "github.com/urfave/cli"
)

// CommandArchive is used for archiving the gowap profile
// This command only can use in gowap working directory
// Usage: gowap archive
func CommandArchive(c *cli.Context) error {
    // TODO:
    // validate current folder is gowap
    // show all search list that belongs current gowap
    return nil
}