Move Data.MongoDB to Data

This commit is contained in:
Robert Marshall 2020-06-22 19:47:45 +01:00
parent 6e412f4f26
commit 005eea35e2
11 changed files with 55 additions and 10 deletions

View file

@ -0,0 +1,10 @@
using Robware.Auth.API;
using System.Threading.Tasks;
namespace Robware.Data {
public class ApiKeyRepository : IApiKeys {
public Task<ApiKey> Get(string key) {
throw new System.NotImplementedException();
}
}
}