mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
15 lines
277 B
Go
Executable File
15 lines
277 B
Go
Executable File
package inner
|
|
|
|
import (
|
|
"fmt"
|
|
"rsc.io/quote"
|
|
// wmill "github.com/windmill-labs/windmill-go-client"
|
|
)
|
|
|
|
func main(x string) (interface{}, error) {
|
|
fmt.Println("Hello, World")
|
|
fmt.Println(quote.Opt())
|
|
// v, _ := wmill.GetVariable("g/all/pretty_secret")
|
|
return x, nil
|
|
}
|