summary refs log tree commit diff
path: root/src/util/config/types/GifConfiguration.ts
blob: 565c2ac0955146841388facf636828a4534d7f98 (plain) (blame)
1
2
3
4
5
export class GifConfiguration {
	enabled: boolean = true;
	provider: "tenor" = "tenor"; // more coming soon
	apiKey?: string = "LIVDSRZULELA";
}