working rss feed to nostr publish
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.NODE_REGION_CONFIG_FILE_OPTIONS = exports.NODE_REGION_CONFIG_OPTIONS = exports.REGION_INI_NAME = exports.REGION_ENV_NAME = void 0;
|
||||
exports.REGION_ENV_NAME = "AWS_REGION";
|
||||
exports.REGION_INI_NAME = "region";
|
||||
exports.NODE_REGION_CONFIG_OPTIONS = {
|
||||
environmentVariableSelector: (env) => env[exports.REGION_ENV_NAME],
|
||||
configFileSelector: (profile) => profile[exports.REGION_INI_NAME],
|
||||
default: () => {
|
||||
throw new Error("Region is missing");
|
||||
},
|
||||
};
|
||||
exports.NODE_REGION_CONFIG_FILE_OPTIONS = {
|
||||
preferredFile: "credentials",
|
||||
};
|
||||
Reference in New Issue
Block a user