From f214b23b2669542e5ef846cebdb46f7df6712c75 Mon Sep 17 00:00:00 2001 From: Chris Campo Date: Tue, 13 Feb 2024 14:48:43 -0500 Subject: [PATCH] Remove REPO_ prefix from repo type enum --- scan/scanner.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scan/scanner.go b/scan/scanner.go index 47feb77..bf0ff69 100644 --- a/scan/scanner.go +++ b/scan/scanner.go @@ -20,10 +20,10 @@ type RepoType string const ( // Repo types - RepoTypeRDS RepoType = "REPO_TYPE_RDS" - RepoTypeRedshift RepoType = "REPO_TYPE_REDSHIFT" - RepoTypeDynamoDB RepoType = "REPO_TYPE_DYNAMODB" - RepoTypeS3 RepoType = "REPO_TYPE_S3" + RepoTypeRDS RepoType = "TYPE_RDS" + RepoTypeRedshift RepoType = "TYPE_REDSHIFT" + RepoTypeDynamoDB RepoType = "TYPE_DYNAMODB" + RepoTypeS3 RepoType = "TYPE_S3" ) // Repository represents a scanned data repository.