Skip to content

Commit

Permalink
Renamed package modules from destiny2bot to rivenbot
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Villavicencio authored and Daniel Villavicencio committed May 6, 2024
1 parent 92d89cb commit f6b77e2
Show file tree
Hide file tree
Showing 142 changed files with 412 additions and 417 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.danielvm.destiny2bot;
package com.deahtstroke.rivenbot;

import com.danielvm.destiny2bot.filter.SignatureFilterFunction;
import com.danielvm.destiny2bot.handler.InteractionHandler;
import com.deahtstroke.rivenbot.filter.SignatureFilterFunction;
import com.deahtstroke.rivenbot.handler.InteractionHandler;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package com.danielvm.destiny2bot.client;
package com.deahtstroke.rivenbot.client;

import com.danielvm.destiny2bot.dto.destiny.ActivitiesResponse;
import com.danielvm.destiny2bot.dto.destiny.BungieResponse;
import com.danielvm.destiny2bot.dto.destiny.ExactUserSearchRequest;
import com.danielvm.destiny2bot.dto.destiny.ExactUserSearchResponse;
import com.danielvm.destiny2bot.dto.destiny.MemberGroupResponse;
import com.danielvm.destiny2bot.dto.destiny.MembershipResponse;
import com.danielvm.destiny2bot.dto.destiny.PostGameCarnageReport;
import com.danielvm.destiny2bot.dto.destiny.SearchResult;
import com.danielvm.destiny2bot.dto.destiny.UserGlobalSearchBody;
import com.danielvm.destiny2bot.dto.destiny.characters.CharactersResponse;
import com.danielvm.destiny2bot.dto.destiny.manifest.ManifestResponseFields;
import com.danielvm.destiny2bot.dto.destiny.milestone.MilestoneEntry;
import com.danielvm.destiny2bot.enums.ManifestEntity;
import com.deahtstroke.rivenbot.dto.destiny.ActivitiesResponse;
import com.deahtstroke.rivenbot.dto.destiny.BungieResponse;
import com.deahtstroke.rivenbot.dto.destiny.ExactUserSearchRequest;
import com.deahtstroke.rivenbot.dto.destiny.ExactUserSearchResponse;
import com.deahtstroke.rivenbot.dto.destiny.MemberGroupResponse;
import com.deahtstroke.rivenbot.dto.destiny.MembershipResponse;
import com.deahtstroke.rivenbot.dto.destiny.PostGameCarnageReport;
import com.deahtstroke.rivenbot.dto.destiny.SearchResult;
import com.deahtstroke.rivenbot.dto.destiny.UserGlobalSearchBody;
import com.deahtstroke.rivenbot.dto.destiny.characters.CharactersResponse;
import com.deahtstroke.rivenbot.dto.destiny.manifest.ManifestResponseFields;
import com.deahtstroke.rivenbot.dto.destiny.milestone.MilestoneEntry;
import com.deahtstroke.rivenbot.enums.ManifestEntity;
import java.util.List;
import java.util.Map;
import org.springframework.web.bind.annotation.PathVariable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.danielvm.destiny2bot.client;
package com.deahtstroke.rivenbot.client;

import com.danielvm.destiny2bot.dto.discord.InteractionResponseData;
import com.deahtstroke.rivenbot.dto.discord.InteractionResponseData;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.danielvm.destiny2bot.config;
package com.deahtstroke.rivenbot.config;

import com.danielvm.destiny2bot.client.BungieClient;
import com.deahtstroke.rivenbot.client.BungieClient;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.danielvm.destiny2bot.config;
package com.deahtstroke.rivenbot.config;

import com.danielvm.destiny2bot.client.DiscordClient;
import com.deahtstroke.rivenbot.client.DiscordClient;
import java.util.List;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto;
package com.deahtstroke.rivenbot.dto;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto;
package com.deahtstroke.rivenbot.dto;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto;
package com.deahtstroke.rivenbot.dto;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto;
package com.deahtstroke.rivenbot.dto;

import jakarta.annotation.Nullable;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto;
package com.deahtstroke.rivenbot.dto;

import java.time.ZonedDateTime;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.time.Instant;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import com.fasterxml.jackson.annotation.JsonAlias;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import com.fasterxml.jackson.annotation.JsonAlias;
import jakarta.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.Builder;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.util.Map;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.time.Instant;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.characters;
package com.deahtstroke.rivenbot.dto.destiny.characters;

import java.util.Map;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.characters;
package com.deahtstroke.rivenbot.dto.destiny.characters;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.characters;
package com.deahtstroke.rivenbot.dto.destiny.characters;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.manifest;
package com.deahtstroke.rivenbot.dto.destiny.manifest;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.manifest;
package com.deahtstroke.rivenbot.dto.destiny.manifest;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.manifest;
package com.deahtstroke.rivenbot.dto.destiny.manifest;

import lombok.AllArgsConstructor;
import lombok.Builder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.manifest;
package com.deahtstroke.rivenbot.dto.destiny.manifest;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.manifest;
package com.deahtstroke.rivenbot.dto.destiny.manifest;

import java.util.Map;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.milestone;
package com.deahtstroke.rivenbot.dto.destiny.milestone;

import java.util.List;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.destiny.milestone;
package com.deahtstroke.rivenbot.dto.destiny.milestone;

import java.time.ZonedDateTime;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
* of Bungie API responses use hashes which need to be referred back to using the manifest API.
* </p>
*/
package com.danielvm.destiny2bot.dto.destiny;
package com.deahtstroke.rivenbot.dto.destiny;
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonAlias;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import lombok.AllArgsConstructor;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import lombok.Builder;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import lombok.AllArgsConstructor;
import lombok.Builder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.danielvm.destiny2bot.dto.discord;
package com.deahtstroke.rivenbot.dto.discord;

import lombok.AllArgsConstructor;
import lombok.Builder;
Expand Down
Loading

0 comments on commit f6b77e2

Please sign in to comment.