tmp git updates
This commit is contained in:
parent
62f92b713c
commit
c9af6756ef
3 changed files with 4 additions and 38 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -20,3 +20,6 @@
|
|||
|
||||
# Go workspace file
|
||||
go.work
|
||||
|
||||
# Go temporary test files
|
||||
**/plugins/tmptest/**
|
|
@ -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",
|
||||
}
|
||||
}
|
|
@ -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)
|
||||
}
|
Loading…
Reference in a new issue