diff --git a/.gitignore b/.gitignore index d0570f9..831eb91 100644 --- a/.gitignore +++ b/.gitignore @@ -19,4 +19,7 @@ # vendor/ # Go workspace file -go.work \ No newline at end of file +go.work + +# Go temporary test files +**/plugins/tmptest/** \ No newline at end of file diff --git a/plugins/tmptest/info.go b/plugins/tmptest/info.go deleted file mode 100644 index d3d76f5..0000000 --- a/plugins/tmptest/info.go +++ /dev/null @@ -1,11 +0,0 @@ -package main - -func (p plug) Info() map[string]interface{} { - return map[string]interface{}{ - "name": "tmptest", - "version": "1.0.0", - "support": "any", - "description": "Temporary testing", - "developer": "asandikci@aliberksandikci.com.tr", - } -} diff --git a/plugins/tmptest/main.go b/plugins/tmptest/main.go deleted file mode 100644 index a2fec8f..0000000 --- a/plugins/tmptest/main.go +++ /dev/null @@ -1,26 +0,0 @@ -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() - - // THIS FILE WON'T UPDATE ANYMORE (because of .gitignore) - - fmt.Println() - fmt.Println() - fmt.Println("----- End of Test Area -----") - fmt.Println() - time.Sleep(5 * time.Second) -}