-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
26 lines (23 loc) · 658 Bytes
/
main.go
File metadata and controls
26 lines (23 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package main
import (
// "context"
"fmt"
//"github.com/niulechuan/e2e/pkg/apis"
// "github.com/niulechuan/e2e/pkg/apis/cache/v1alpha1"
_ "github.com/niulechuan/e2e/pkg/framework"
// k8sclient "sigs.k8s.io/controller-runtime/pkg/client"
)
func main() {
//_ = framework.NewDefaultFramework(apis.AddToScheme)
// _ = framework.NewDefaultFramework()
// memcached := &v1alpha1.Memcached{}
// client := f.GetClient()
// backupKey := k8sclient.ObjectKey{
// Name: "test-memcached",
// Namespace: "default",
// }
// if err := client.Get(context.TODO(), backupKey, memcached); err != nil {
// f.ExpectNoError(err)
// }
fmt.Printf("123")
}