File tree 23 files changed +45
-45
lines changed
api/src/main/java/net/azzerial/slash
playground/src/main/java/net/azzerial/slash/playground
23 files changed +45
-45
lines changed Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash ;
17
+ package net .azzerial .slash ;
18
18
19
- import com . github .azzerial .slash .internal .CommandRegistry ;
20
- import com . github .azzerial .slash .internal .InteractionListener ;
19
+ import net .azzerial .slash .internal .CommandRegistry ;
20
+ import net .azzerial .slash .internal .InteractionListener ;
21
21
import net .dv8tion .jda .api .JDA ;
22
22
import net .dv8tion .jda .api .hooks .EventListener ;
23
23
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash ;
17
+ package net .azzerial .slash ;
18
18
19
- import com . github .azzerial .slash .SlashClient .Flag ;
20
- import com . github .azzerial .slash .internal .CommandRegistry ;
19
+ import net .azzerial .slash .SlashClient .Flag ;
20
+ import net .azzerial .slash .internal .CommandRegistry ;
21
21
import net .dv8tion .jda .api .JDA ;
22
22
import net .dv8tion .jda .api .interactions .commands .Command ;
23
23
import net .dv8tion .jda .internal .utils .Checks ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash ;
17
+ package net .azzerial .slash ;
18
18
19
19
import net .dv8tion .jda .api .JDA ;
20
20
import net .dv8tion .jda .api .entities .Guild ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .annotations ;
17
+ package net .azzerial .slash .annotations ;
18
18
19
19
import java .lang .annotation .*;
20
20
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .annotations ;
17
+ package net .azzerial .slash .annotations ;
18
18
19
19
import java .lang .annotation .*;
20
20
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .annotations ;
17
+ package net .azzerial .slash .annotations ;
18
18
19
19
/**
20
20
* This enum represents the type of a Slash Command option.
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .annotations ;
17
+ package net .azzerial .slash .annotations ;
18
18
19
19
import java .lang .annotation .*;
20
20
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .annotations ;
17
+ package net .azzerial .slash .annotations ;
18
18
19
19
import java .lang .annotation .*;
20
20
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .annotations ;
17
+ package net .azzerial .slash .annotations ;
18
18
19
19
import java .lang .annotation .*;
20
20
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .components ;
17
+ package net .azzerial .slash .components ;
18
18
19
- import com . github .azzerial .slash .internal .ComponentRegistry ;
19
+ import net .azzerial .slash .internal .ComponentRegistry ;
20
20
import net .dv8tion .jda .api .entities .Emoji ;
21
21
import net .dv8tion .jda .api .interactions .components .ButtonStyle ;
22
22
import net .dv8tion .jda .api .interactions .components .Component ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .components ;
17
+ package net .azzerial .slash .components ;
18
18
19
- import com . github .azzerial .slash .internal .ComponentRegistry ;
19
+ import net .azzerial .slash .internal .ComponentRegistry ;
20
20
import net .dv8tion .jda .api .entities .Emoji ;
21
21
import net .dv8tion .jda .api .interactions .components .Component ;
22
22
import net .dv8tion .jda .api .interactions .components .selections .SelectOption ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .internal ;
17
+ package net .azzerial .slash .internal ;
18
18
19
- import com . github .azzerial .slash .annotations .Option ;
20
- import com . github .azzerial .slash .annotations .Slash ;
21
- import com . github .azzerial .slash .annotations .Subcommand ;
22
- import com . github .azzerial .slash .annotations .SubcommandGroup ;
19
+ import net .azzerial .slash .annotations .Option ;
20
+ import net .azzerial .slash .annotations .Slash ;
21
+ import net .azzerial .slash .annotations .Subcommand ;
22
+ import net .azzerial .slash .annotations .SubcommandGroup ;
23
23
import net .dv8tion .jda .api .events .interaction .SlashCommandEvent ;
24
24
import net .dv8tion .jda .api .interactions .commands .Command ;
25
25
import net .dv8tion .jda .api .interactions .commands .OptionType ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .internal ;
17
+ package net .azzerial .slash .internal ;
18
18
19
- import com . github .azzerial .slash .SlashCommand ;
20
- import com . github .azzerial .slash .annotations .Slash ;
19
+ import net .azzerial .slash .SlashCommand ;
20
+ import net .azzerial .slash .annotations .Slash ;
21
21
import net .dv8tion .jda .api .JDA ;
22
22
import net .dv8tion .jda .api .interactions .commands .build .CommandData ;
23
23
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .internal ;
17
+ package net .azzerial .slash .internal ;
18
18
19
19
import java .lang .reflect .Method ;
20
20
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .internal ;
17
+ package net .azzerial .slash .internal ;
18
18
19
- import com . github .azzerial .slash .annotations .Slash ;
20
- import com . github .azzerial .slash .internal .util .UnsignedBase512 ;
19
+ import net .azzerial .slash .annotations .Slash ;
20
+ import net .azzerial .slash .internal .util .UnsignedBase512 ;
21
21
import net .dv8tion .jda .api .events .interaction .ButtonClickEvent ;
22
22
import net .dv8tion .jda .api .events .interaction .SelectionMenuEvent ;
23
23
import net .dv8tion .jda .internal .utils .Checks ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .internal ;
17
+ package net .azzerial .slash .internal ;
18
18
19
- import com . github .azzerial .slash .SlashCommand ;
19
+ import net .azzerial .slash .SlashCommand ;
20
20
import net .dv8tion .jda .api .events .interaction .GenericComponentInteractionCreateEvent ;
21
21
import net .dv8tion .jda .api .events .interaction .SlashCommandEvent ;
22
22
import net .dv8tion .jda .api .hooks .ListenerAdapter ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .internal .util ;
17
+ package net .azzerial .slash .internal .util ;
18
18
19
19
import java .math .BigInteger ;
20
20
Original file line number Diff line number Diff line change 17
17
/**
18
18
* API module of the Slash Commands library.
19
19
*/
20
- package com . github .azzerial .slash ;
20
+ package net .azzerial .slash ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .util ;
17
+ package net .azzerial .slash .util ;
18
18
19
19
import net .dv8tion .jda .internal .utils .Checks ;
20
20
21
- import static com . github .azzerial .slash .internal .ComponentRegistry .CODE_LENGTH ;
21
+ import static net .azzerial .slash .internal .ComponentRegistry .CODE_LENGTH ;
22
22
23
23
public final class Buffer {
24
24
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .util ;
17
+ package net .azzerial .slash .util ;
18
18
19
19
import net .dv8tion .jda .api .interactions .InteractionHook ;
20
20
import net .dv8tion .jda .api .utils .data .DataObject ;
32
32
import java .util .function .BiConsumer ;
33
33
import java .util .function .Consumer ;
34
34
35
- import static com . github .azzerial .slash .internal .ComponentRegistry .CODE_LENGTH ;
35
+ import static net .azzerial .slash .internal .ComponentRegistry .CODE_LENGTH ;
36
36
37
37
public final class Session extends DataObject {
38
38
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .playground ;
17
+ package net .azzerial .slash .playground ;
18
18
19
- import com . github .azzerial .slash .SlashClient ;
20
- import com . github .azzerial .slash .SlashClientBuilder ;
21
- import com . github .azzerial .slash .playground .commands .PingCommand ;
19
+ import net .azzerial .slash .SlashClient ;
20
+ import net .azzerial .slash .SlashClientBuilder ;
21
+ import net .azzerial .slash .playground .commands .PingCommand ;
22
22
import net .dv8tion .jda .api .JDA ;
23
23
import net .dv8tion .jda .api .JDABuilder ;
24
24
import net .dv8tion .jda .api .requests .GatewayIntent ;
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package com . github .azzerial .slash .playground .commands ;
17
+ package net .azzerial .slash .playground .commands ;
18
18
19
- import com . github .azzerial .slash .annotations .Slash ;
20
- import com . github .azzerial .slash .components .SlashButton ;
19
+ import net .azzerial .slash .annotations .Slash ;
20
+ import net .azzerial .slash .components .SlashButton ;
21
21
import net .dv8tion .jda .api .EmbedBuilder ;
22
22
import net .dv8tion .jda .api .entities .MessageEmbed ;
23
23
import net .dv8tion .jda .api .events .interaction .ButtonClickEvent ;
Original file line number Diff line number Diff line change 17
17
/**
18
18
* Implementation module of the Slash Commands library.
19
19
*/
20
- package com . github .azzerial .slash .playground ;
20
+ package net .azzerial .slash .playground ;
You can’t perform that action at this time.
0 commit comments