ahenk-go/plugins/tmptest/main.go

27 lines
409 B
Go
Raw Normal View History

package main
import (
2023-08-29 20:54:15 +03:00
"fmt"
"time"
)
type plug string
// exported plugin Symbol
var TmptestConnect plug
func (p plug) TmpTest() {
2023-08-29 20:54:15 +03:00
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)
}