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