diff --git a/native/utils/neynar-utils.js b/native/utils/neynar-utils.js new file mode 100644 --- /dev/null +++ b/native/utils/neynar-utils.js @@ -0,0 +1,10 @@ +// @flow + +let neynarKey: ?string = null; +try { + // $FlowExpectedError: file might not exist + const { key } = require('../facts/neynar.json'); + neynarKey = key; +} catch {} + +export { neynarKey };