diff --git a/docs/general/services.md b/docs/general/services.md index 80df1fae..12a95ea3 100644 --- a/docs/general/services.md +++ b/docs/general/services.md @@ -52,19 +52,6 @@ Class: [Blist](/#/docs/main/$$$ref/class/Blist) Website: https://blist.xyz -
-

- botlistspace logo -

- - -

botlist.space

- -Keys: `botlistspace`, `botlist.space` -Class: [BotListSpace](/#/docs/main/$$$ref/class/BotListSpace) -Website: https://botlist.space -
-

botsdatabase logo @@ -235,6 +222,21 @@ Class: [DiscordLabs](/#/docs/main/$$$ref/class/DiscordLabs) Website: https://bots.discordlabs.org/

+
+

+ discordlistspace logo +

+ + + + +

discordlist.space

+ +Keys: `discordlistspace`, `discordlist.space`, `botlistspace`, `botlist.space` +Class: [DiscordListSpace](/#/docs/main/$$$ref/class/DiscordListSpace) +Website: https://discordlist.space +
+

discordlistology logo diff --git a/src/Interface/Lists/BotListSpace.ts b/src/Interface/Lists/DiscordListSpace.ts similarity index 87% rename from src/Interface/Lists/BotListSpace.ts rename to src/Interface/Lists/DiscordListSpace.ts index 6d5162db..1bc76520 100644 --- a/src/Interface/Lists/BotListSpace.ts +++ b/src/Interface/Lists/DiscordListSpace.ts @@ -3,33 +3,38 @@ import { Util, CountResolvable, IDResolvable } from '../../Utils/Util' import { Query } from '../../Utils/Constants' /** - * Represents the botlist.space service. + * Represents the discordlist.space service. * @see https://docs.botlist.space/ */ -export default class BotListSpace extends Service { +export default class DiscordListSpace extends Service { /** The values that can be used to select the service. */ static get aliases() { - return ['botlistspace', 'botlist.space'] + return [ + 'discordlistspace', + 'discordlist.space', + 'botlistspace', + 'botlist.space' + ] } /** The logo URL. */ static get logoURL() { - return 'https://botlist.space/img/android-chrome-512x512.png' + return 'https://discordlist.space/img/android-chrome-512x512.png' } /** Service's name. */ static get serviceName() { - return 'botlist.space' + return 'discordlist.space' } /** The website URL. */ static get websiteURL() { - return 'https://botlist.space' + return 'https://discordlist.space' } /** The base URL of the service's API. */ static get baseURL() { - return 'https://api.botlist.space/v1' + return 'https://api.discordlist.space/v1' } /**