2023-08-28 10:42:02 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-08-29 20:54:15 +03:00
|
|
|
"fmt"
|
|
|
|
"time"
|
2023-08-28 10:42:02 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
2023-08-28 10:42:02 +03:00
|
|
|
}
|