wazuh-notify/test.go
2024-05-09 15:27:45 +02:00

12 lines
110 B
Go

package main
import (
"fmt"
"os"
)
func main() {
fmt.Println("hier")
os.Stderr.Write([]byte("hier2"))
}