go-loader-test/plugins/tmptest/main.go

25 lines
349 B
Go
Raw Permalink Normal View History

2023-08-31 20:51:52 +03:00
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()
fmt.Println()
fmt.Println()
fmt.Println("----- End of Test Area -----")
fmt.Println()
time.Sleep(3 * time.Second)
}