feat: complete MVP epics E7-E10 (provisioning, console proxy, audit, frontend)
This commit is contained in:
@@ -152,3 +152,19 @@ func (s *stubRepository) GetVM(_ context.Context, profileID string, vmID string)
|
||||
s.vmID = vmID
|
||||
return s.vm, s.getFound, s.err
|
||||
}
|
||||
|
||||
func (s *stubRepository) GetProjectInfo(_ context.Context, profileID string, projectID string) (ProjectInfo, bool, error) {
|
||||
return ProjectInfo{}, false, nil
|
||||
}
|
||||
|
||||
func (s *stubRepository) CheckQuota(_ context.Context, _ string) (QuotaInfo, error) {
|
||||
return QuotaInfo{}, nil
|
||||
}
|
||||
|
||||
func (s *stubRepository) ReserveNextVMID(_ context.Context, _ string) (int, error) {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
func (s *stubRepository) InsertVM(_ context.Context, _ InsertVMRecord) (VM, error) {
|
||||
return VM{}, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user