releaser/shuttletask/ci.go

13 lines
115 B
Go
Raw Normal View History

2023-04-08 12:34:57 +02:00
package main
import (
"context"
"log"
)
func Ci(ctx context.Context) error {
log.Println("CI")
return nil
}