kjuulh
53747d400c
Some checks reported errors
continuous-integration/drone Build encountered an error
13 lines
115 B
Go
13 lines
115 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
)
|
|
|
|
func Ci(ctx context.Context) error {
|
|
log.Println("CI")
|
|
|
|
return nil
|
|
}
|