Skip to content

Commit

Permalink
[FEAT] 첫번째 코멘트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lsn5963 committed Jul 29, 2024
1 parent 46fe695 commit 652f913
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.noplanb.domain.character.service;
package com.noplanb.domain.character.application;

import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.noplanb.domain.item.service;
package com.noplanb.domain.item.application;

import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/noplanb/domain/item/domain/ItemStatus.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.noplanb.domain.item.domain;

public enum ItemStatus {
equip,
unequip
EQUIP,
UNEQUIP
}
8 changes: 4 additions & 4 deletions src/main/java/com/noplanb/domain/item/domain/ItemType.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.noplanb.domain.item.domain;

public enum ItemType {
head,
face,
clothes,
background
HEAD,
FACE,
CLOTHES,
BACKGROUND
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.noplanb.domain.quest.service;
package com.noplanb.domain.quest.application;

import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.noplanb.domain.user.service;
package com.noplanb.domain.user.application;

import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
Expand Down

0 comments on commit 652f913

Please sign in to comment.