(ctx context.Context, uid string, clusterId string)
| 76 | } |
| 77 | |
| 78 | func (i *imlUpstreamService) LatestCommit(ctx context.Context, uid string, clusterId string) (*commit.Commit[Config], error) { |
| 79 | |
| 80 | return i.commitService.Latest(ctx, uid, clusterId) |
| 81 | } |
| 82 | |
| 83 | func (i *imlUpstreamService) SaveCommit(ctx context.Context, uid string, partition string, cfg *Config) error { |
| 84 | return i.commitService.Save(ctx, uid, partition, cfg) |