mirror of https://github.com/abpframework/abp.git
7 changed files with 32 additions and 4 deletions
@ -0,0 +1,17 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using Volo.Utils.SolutionTemplating.Building; |
|||
|
|||
namespace Volo.AbpWebSite.Templates |
|||
{ |
|||
public class ServiceTemplate : TemplateInfo |
|||
{ |
|||
public ServiceTemplate(IConfigurationRoot configuration) |
|||
: base( |
|||
"abp-service", |
|||
new GithubRepositoryInfo("abpframework/abp", configuration["GithubAccessToken"]), |
|||
"/templates/service") |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue