예제 #1
0
 public static ICommandBuilder AddModule <T>(this ICommandBuilder builder)
 => builder.AddModule(typeof(T));
 public static ICommandBuilder AddPermissionModule(this ICommandBuilder builder)
 {
     builder.AddModule <PermissionModule>();
     return(builder);
 }