diff options
author | crupest <crupest@outlook.com> | 2020-03-06 18:12:51 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-03-06 18:12:51 +0800 |
commit | 6960d16da68be3e465c2b355ef8175c708e34a6d (patch) | |
tree | 4d320ffd64854cc959ebc7b763f2766505198b13 /Timeline/Startup.cs | |
parent | a48bc5842e83f72faf48cad46acca678ed5b0863 (diff) | |
download | timeline-6960d16da68be3e465c2b355ef8175c708e34a6d.tar.gz timeline-6960d16da68be3e465c2b355ef8175c708e34a6d.tar.bz2 timeline-6960d16da68be3e465c2b355ef8175c708e34a6d.zip |
...
Diffstat (limited to 'Timeline/Startup.cs')
-rw-r--r-- | Timeline/Startup.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Timeline/Startup.cs b/Timeline/Startup.cs index 14bd14cc..263e6b7a 100644 --- a/Timeline/Startup.cs +++ b/Timeline/Startup.cs @@ -93,6 +93,10 @@ namespace Timeline services.AddScoped<IUserService, UserService>();
services.AddScoped<IUserTokenService, JwtUserTokenService>();
services.AddScoped<IUserTokenManager, UserTokenManager>();
+
+ services.AddScoped<IETagGenerator, ETagGenerator>();
+ services.AddScoped<IDataManager, DataManager>();
+
services.AddUserAvatarService();
services.AddScoped<ITimelineService, TimelineService>();
|