tmp git updates

This commit is contained in:
Aliberk Sandıkçı 2023-08-30 22:37:38 +03:00
parent 62f92b713c
commit c9af6756ef
Signed by: asandikci
GPG Key ID: 25C67A03B5666BC1
3 changed files with 4 additions and 38 deletions

5
.gitignore vendored
View File

@ -19,4 +19,7 @@
# vendor/
# Go workspace file
go.work
go.work
# Go temporary test files
**/plugins/tmptest/**

View File

@ -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",
}
}

View File

@ -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)
}