mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-26 09:17:55 +00:00
12 lines
280 B
Go
12 lines
280 B
Go
|
package activities
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/mentos1386/zdravko/internal/temporal"
|
||
|
)
|
||
|
|
||
|
func (a *Activities) ProcessCheckOutcome(ctx context.Context, param temporal.ActivityProcessCheckOutcomeParam) (*temporal.ActivityProcessCheckOutcomeResult, error) {
|
||
|
return nil, nil
|
||
|
}
|