tmp git updates
This commit is contained in:
parent
62f92b713c
commit
c9af6756ef
3 changed files with 4 additions and 38 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -19,4 +19,7 @@
|
||||||
# vendor/
|
# vendor/
|
||||||
|
|
||||||
# Go workspace file
|
# Go workspace file
|
||||||
go.work
|
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