diff --git a/plugins/tmptest/info.go b/plugins/tmptest/info.go new file mode 100644 index 0000000..34c9fc8 --- /dev/null +++ b/plugins/tmptest/info.go @@ -0,0 +1,11 @@ +package main + +func (p plug) Info() map[string]interface{} { + return map[string]interface{}{ + "name": "tmptest", + "version": "1.0.2", + "support": "any", + "description": "Temporary testing", + "developer": "asandikci@aliberksandikci.com.tr", + } +} diff --git a/plugins/tmptest/main.go b/plugins/tmptest/main.go new file mode 100644 index 0000000..fdff3f5 --- /dev/null +++ b/plugins/tmptest/main.go @@ -0,0 +1,26 @@ +package main + +import ( + "fmt" + "time" +) + +type plug string + +// exported plugin Symbol +var TmptestConnect plug + +func (p plug) TmpTest() { + fmt.Println() + fmt.Println("----- Entered Test Area -----") + fmt.Println() + fmt.Println() + //s + // THIS FILE WON'T UPDATE ANYMORE (bsecause of .gitignore) + + fmt.Println() + fmt.Println() + fmt.Println("----- End of Test Area -----") + fmt.Println() + time.Sleep(5 * time.Second) +}