Skip to content

Commit

Permalink
#42 MainController와 PetRestController에 있는 session에 담는 코드 util화 시키기
Browse files Browse the repository at this point in the history
  • Loading branch information
yujin-Jin committed Apr 5, 2022
1 parent 28bf630 commit d2a274f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/java/com/petpular/common/SessionUtils.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.petpular.common;

import java.util.List;

import com.petpular.pet.model.Pet;

public class SessionUtils {
public static String petArr(int userId, List<Pet> petList) {
return "";
}
}

0 comments on commit d2a274f

Please sign in to comment.