Skip to content

Commit

Permalink
feat: GithubOAuthController (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
toychip committed Nov 28, 2023
1 parent 449ade7 commit 25b4ffa
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.api.TaveShot.global.oauth2;

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

@RestController
@RequestMapping("/oauth/authorize")
public class GithubOAuthController {

@GetMapping("/github")
public void githubLogin() {
}
}

0 comments on commit 25b4ffa

Please sign in to comment.