Skip to content

Commit

Permalink
멤버 컨트롤러 클래스 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoochanhong committed Mar 19, 2023
1 parent c1d8a59 commit 4845c9d
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.example.MemberManagementExample.controller;

import com.example.MemberManagementExample.service.MemberService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;

@Controller
public class MemberController {

private final MemberService memberService;

@Autowired
public MemberController(MemberService memberService) {
this.memberService = memberService;
}

}

0 comments on commit 4845c9d

Please sign in to comment.