add socket

This commit is contained in:
wzdwc
2020-03-28 12:40:54 +08:00
parent 592dd7e213
commit 804487e8c5
257 changed files with 9506 additions and 89 deletions
+14
View File
@@ -0,0 +1,14 @@
digraph G {
"AccountService" [ label = "AccountService(AccountService)
scope:Request", fontsize = 10 ];
"app";
"ctx";
"account" [ label = "account(Account)
scope:Request", fontsize = 10 ];
"authMiddleware" [ label = "authMiddleware(authMiddleware)
scope:Request", fontsize = 10 ];
"AccountService" -> "app" [ label = "properties", fontsize = 8 ];
"AccountService" -> "ctx" [ label = "properties", fontsize = 8 ];
"account" -> "AccountService" [ label = "properties", fontsize = 8 ];
"account" -> "ctx" [ label = "properties", fontsize = 8 ];
}