source:
source/MovieZilla-master/src/main/java/com/example/demo/service/AuthService.java
Last change on this file was fc7ec52, checked in by , 2 years ago | |
---|---|
|
|
File size: 200 bytes |
Line | |
---|---|
1 | package com.example.demo.service; |
2 | |
3 | import com.example.demo.model.User; |
4 | |
5 | import java.util.Optional; |
6 | |
7 | public interface AuthService { |
8 | public Optional<User> login(String username, String password); |
9 | } |
Note:
See TracBrowser
for help on using the repository browser.