Provide mechanism to validate API keys. Re-organise structure to reflect new responsibility
This commit is contained in:
parent
87ae65316f
commit
9519bc623b
27 changed files with 245 additions and 36 deletions
7
src/Robware.Auth/Users/IUsers.cs
Normal file
7
src/Robware.Auth/Users/IUsers.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
using System.Threading.Tasks;
|
||||
|
||||
namespace Robware.Auth.Users {
|
||||
public interface IUsers {
|
||||
Task<User> GetByEmail(string email);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue