diff --git a/lib/bootstrap-pgstac/index.ts b/lib/bootstrapper/index.ts similarity index 100% rename from lib/bootstrap-pgstac/index.ts rename to lib/bootstrapper/index.ts diff --git a/lib/bootstrap-pgstac/runtime/Dockerfile b/lib/bootstrapper/runtime/Dockerfile similarity index 100% rename from lib/bootstrap-pgstac/runtime/Dockerfile rename to lib/bootstrapper/runtime/Dockerfile diff --git a/lib/bootstrap-pgstac/runtime/handler.py b/lib/bootstrapper/runtime/handler.py similarity index 100% rename from lib/bootstrap-pgstac/runtime/handler.py rename to lib/bootstrapper/runtime/handler.py diff --git a/lib/database.ts b/lib/database/index.ts similarity index 95% rename from lib/database.ts rename to lib/database/index.ts index fcbcad8..214436d 100644 --- a/lib/database.ts +++ b/lib/database/index.ts @@ -4,7 +4,7 @@ import { aws_secretsmanager as secretsmanager, } from "aws-cdk-lib"; import { Construct } from "constructs"; -import { BootstrapPgStac, BootstrapPgStacProps } from "./bootstrap-pgstac"; +import { BootstrapPgStac, BootstrapPgStacProps } from "../bootstrapper"; /** * An RDS instance with pgSTAC installed. This is a wrapper around the diff --git a/lib/index.ts b/lib/index.ts index 974c460..81c0143 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1,2 +1,2 @@ -export * from "./bootstrap-pgstac"; +export * from "./bootstrapper"; export * from "./database";