Use a central list of private types

This commit is contained in:
2019-11-18 14:26:53 +09:00
parent 597f46f372
commit 12c752a272
4 changed files with 26 additions and 26 deletions

View File

@ -13,7 +13,7 @@ func Types(ctx aero.Context) error {
types := make([]string, 0, len(typeMap))
for typeName := range typeMap {
if arn.Contains(privateTypes, typeName) {
if arn.IsPrivateType(typeName) {
continue
}