10 lines
94 B
Go
10 lines
94 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func Run(ctx context.Context) error {
|
|
return ctx.Err()
|
|
}
|