I hereby claim:
- I am marcusgadbem on github.
- I am tm_marcusgadbem (https://keybase.io/tm_marcusgadbem) on keybase.
- I have a public key ASAho_gb0n3bqH29BUEkgnzBtMId4pp4BfXMj4BNR9BoHgo
To claim this, I am signing this object:
| /** | |
| * Documentation: http://docs.azk.io/Azkfile.js | |
| */ | |
| // Adds the systems that shape your system | |
| systems({ | |
| umrum: { | |
| // Dependent systems | |
| depends: ["redis", "mongodb"], | |
| // More images: http://images.azk.io |
| export class APIRateLimitError extends Error { | |
| constructor(err) { | |
| super('API Rate limit.'); | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| import { DynamoDBClient, DynamoDBClientConfig } from '@aws-sdk/client-dynamodb' | |
| import { DynamoDBDocumentClient } from '@aws-sdk/lib-dynamodb' | |
| // @aws-sdk (v3) has keepAlive enabled by default | |
| export const DynamoClient = new DynamoDBClient({}); | |
| const marshallOptions = { | |
| convertEmptyValues: false, | |
| removeUndefinedValues: false, | |
| convertClassInstanceToMap: false, |
| # lib/my_project/task.ex | |
| defmodule MyProject.Task do | |
| @moduledoc """ | |
| TODO: run async task on tests will not work, with unpredictable side effects | |
| """ | |
| @adapter Keyword.get( | |
| Application.compile_env(:my_project, __MODULE__, []), | |
| :adapter, | |
| Task |