Skip to content

Commit

Permalink
[FIX] 폴더 구조 생성 (#664)
Browse files Browse the repository at this point in the history
Co-authored-by: jungjkim <[email protected]>
Co-authored-by: yes-ee <[email protected]>
  • Loading branch information
3 people authored Feb 29, 2024
1 parent 84bbda5 commit 717da13
Show file tree
Hide file tree
Showing 11 changed files with 64 additions and 185 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package gg.pingpong.api;
package gg;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
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 {
}
184 changes: 0 additions & 184 deletions gg-pingpong-api/src/test/resources/application.yml

This file was deleted.

0 comments on commit 717da13

Please sign in to comment.