(ctx context.Context, target string, key string)
| 28 | |
| 29 | type ICommitService[T any] interface { |
| 30 | Latest(ctx context.Context, target string, key string) (*Commit[T], error) |
| 31 | ListLatest(ctx context.Context, key string, target ...string) ([]*Commit[T], error) |
| 32 | Save(ctx context.Context, target string, key string, data *T) error |
| 33 | Get(ctx context.Context, uuid string) (*Commit[T], error) |
no outgoing calls
no test coverage detected