(ctx context.Context, uuids ...string)
| 32 | Save(ctx context.Context, target string, key string, data *T) error |
| 33 | Get(ctx context.Context, uuid string) (*Commit[T], error) |
| 34 | List(ctx context.Context, uuids ...string) ([]*Commit[T], error) |
| 35 | } |
| 36 | |
| 37 | func InitCommitService[T any](name string) { |