Skip to content

Commit

Permalink
[FIX] 폴더 구조 변경 (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
AreSain committed Feb 29, 2024
1 parent cfb870a commit 27aa349
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.admin.category.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class CategoryAdminController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.admin.comment.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class CommentAdminController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.admin.report.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class ReportAdminController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.admin.room.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class RoomAdminController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.admin.template.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class TemplateAdminController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.user.category.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class CategoryController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.user.comment.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class CommentController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.user.report.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class ReportController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package gg.pingpong.api.party.user.room.controller;

import org.springframework.web.bind.annotation.RestController;

@RestController
public class RoomController {
}

0 comments on commit 27aa349

Please sign in to comment.