This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as fs from "fs"; | |
| import * as path from "path"; | |
| import { glob } from "glob"; | |
| import * as parser from "@babel/parser"; | |
| import * as t from "@babel/types"; | |
| import traverse from "@babel/traverse"; | |
| // Types for translation extraction | |
| type Translations = Record<string, string>; | |
| type NamespaceTranslations = Record<string, string[]>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| import string | |
| import datetime | |
| import aerospike | |
| from aerospike import exception as ex | |
| config = {"hosts": [("127.0.0.1", 3000)]} | |