* * done move handle codes to handlers pkg * support force deploy a function * fix remote host issue
13 lines
159 B
Go
13 lines
159 B
Go
package handlers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
)
|
|
|
|
func TestUp(t *testing.T) {
|
|
ctrl := gomock.NewController(t)
|
|
defer ctrl.Finish()
|
|
}
|