9 lines
92 B
Go
9 lines
92 B
Go
package cli
|
|
|
|
import "log"
|
|
|
|
func Cache() error {
|
|
log.Println("running cache")
|
|
return nil
|
|
}
|