Skip to content

Commit

Permalink
Feat [#45] 입금 Controller 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
kych4n committed Feb 1, 2025
1 parent ab41972 commit a56707d
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package org.cotato.tlinkserver.api.controller;

import org.cotato.tlinkserver.api.facade.DepositFacade;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import lombok.RequiredArgsConstructor;

@RestController
@RequestMapping("/api/v1/rooms/{roomId}/deposit")
@RequiredArgsConstructor
public class DepositController {

private final DepositFacade depositFacade;

}

0 comments on commit a56707d

Please sign in to comment.