add redis, cassandra support, change helpers to lib
Some checks failed
Code quality checks / biome (push) Failing after 9s

This commit is contained in:
creations 2025-05-01 15:32:09 -04:00
parent a3555c73d2
commit ab81475ad6
Signed by: creations
GPG key ID: 8F553AA4320FC711
8 changed files with 145 additions and 6 deletions

11
types/config.d.ts vendored
View file

@ -3,3 +3,14 @@ type Environment = {
host: string;
development: boolean;
};
type CassandraConfig = {
host: string;
port: number;
keyspace: string;
username: string;
password: string;
datacenter: string;
contactPoints: string[];
authEnabled: boolean;
};