Skip to content

Commit

Permalink
Add security
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaynegi45 committed Sep 29, 2024
1 parent c3e3433 commit f6e1213
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

@SpringBootApplication
@EnableAsync
public class LibrarymanApiApplication {
public class Application {

public static void main(String[] args) {
SpringApplication.run(LibrarymanApiApplication.class, args);
SpringApplication.run(Application.class, args);
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.libraryman_api.security;

public class LoginController {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.libraryman_api.security;

public class SignupController {
}

0 comments on commit f6e1213

Please sign in to comment.