website refactor
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
* Creates a new team.
|
||||
*/
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import type { ITeamRepository } from '../../domain/repositories/ITeamRepository';
|
||||
import type { ITeamMembershipRepository } from '../../domain/repositories/ITeamMembershipRepository';
|
||||
import type { TeamRepository } from '../../domain/repositories/TeamRepository';
|
||||
import type { TeamMembershipRepository } from '../../domain/repositories/TeamMembershipRepository';
|
||||
import { Team } from '../../domain/entities/Team';
|
||||
import type {
|
||||
TeamMembership,
|
||||
@@ -13,7 +13,7 @@ import type {
|
||||
TeamRole,
|
||||
} from '../../domain/types/TeamMembership';
|
||||
import type { Logger } from '@core/shared/application';
|
||||
import { Result } from '@core/shared/application/Result';
|
||||
import { Result } from '@core/shared/domain/Result';
|
||||
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
||||
export interface CreateTeamInput {
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user