Skip to content

Commit

Permalink
Fixes #46 copyright note code header
Browse files Browse the repository at this point in the history
  • Loading branch information
monambike committed Jun 18, 2024
1 parent 73b19e7 commit 1fb8702
Show file tree
Hide file tree
Showing 61 changed files with 300 additions and 78 deletions.
6 changes: 5 additions & 1 deletion src/APIs/CatApi.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using System;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using System;
using System.Net.Http;

namespace KWiJisho.APIs
Expand Down
6 changes: 5 additions & 1 deletion src/APIs/ChatGPT.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Config;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Config;
using OpenAI_API;
using OpenAI_API.Chat;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/APIs/HttpService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Newtonsoft.Json;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using Newtonsoft.Json;
using System.Net.Http;
using System.Threading.Tasks;
using System;
Expand Down
13 changes: 7 additions & 6 deletions src/APIs/NasaApi.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
using Newtonsoft.Json;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using Monambike.Core.Services;
using System;
using System.Net.Http;
using static KWiJisho.APIs.NasaApi.Apod;
using System.Threading.Tasks;
using System.Net;
using static System.Runtime.InteropServices.JavaScript.JSType;
using Monambike.Core.Services;
using System.Threading.Tasks;
using static KWiJisho.APIs.NasaApi.Apod;

namespace KWiJisho.APIs
{
Expand Down
6 changes: 5 additions & 1 deletion src/APIs/NasaApiApod.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Config;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Config;
using System.Threading.Tasks;

namespace KWiJisho.APIs
Expand Down
6 changes: 5 additions & 1 deletion src/APIs/NasaApiApodResponse.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Newtonsoft.Json;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using Newtonsoft.Json;
using System;

namespace KWiJisho.APIs
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandBasic.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.Entities;
using KWiJisho.Data;
using KWiJisho.Utils;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandBirthday.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.Entities;
using KWiJisho.Config;
using KWiJisho.Utils;
using System;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.Entities;
using KWiJisho.Commands.Prefix;
using KWiJisho.Config;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandKwiGpt.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.Entities;
using KWiJisho.APIs;
using KWiJisho.Config;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandNasa.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.Entities;
using KWiJisho.APIs;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandNotice.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.Entities;
using KWiJisho.Data;
using KWiJisho.Entities;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/CommandThemeTramontina.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.Entities;
using KWiJisho.Entities;
using KWiJisho.Utils;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixBasic.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.CommandsNext;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixBirthday.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.CommandsNext;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixCommandManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using KWiJisho.Utils;
using System;
using System.Collections.Generic;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.CommandsNext;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixKwiGpt.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.CommandsNext;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using KWiJisho.Commands;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixNasa.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.CommandsNext;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using KWiJisho.Utils;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Prefix/PrefixNotice.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using KWiJisho.Config;
Expand Down
8 changes: 5 additions & 3 deletions src/Commands/Prefix/PrefixThemeTramontina.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
using DSharpPlus.Entities;
using KWiJisho.Entities;
using System.Threading.Tasks;

namespace KWiJisho.Commands.Prefix
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashBasic.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.SlashCommands;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashBirthday.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.SlashCommands;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.SlashCommands;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashKwiGpt.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.SlashCommands;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashNasa.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.SlashCommands;
using System.Threading.Tasks;

Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashNotice.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.Entities;
using DSharpPlus.SlashCommands;
using DSharpPlus.SlashCommands.Attributes;
Expand Down
6 changes: 5 additions & 1 deletion src/Commands/Slash/SlashThemeTramontina.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using DSharpPlus.SlashCommands;
using DSharpPlus.SlashCommands.Attributes;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/Data/Colors.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Entities;

namespace KWiJisho.Data
{
Expand Down
6 changes: 5 additions & 1 deletion src/Data/Emojis.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Entities;
using System.Collections.Generic;

namespace KWiJisho.Data
Expand Down
6 changes: 5 additions & 1 deletion src/Data/KWiJisho.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using System;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using System;
using System.Reflection;

namespace KWiJisho.Data
Expand Down
6 changes: 5 additions & 1 deletion src/Data/Servers.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Entities;

namespace KWiJisho.Data
{
Expand Down
6 changes: 5 additions & 1 deletion src/Data/Users.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Entities;
using System;
using System.Collections.Generic;

Expand Down
6 changes: 5 additions & 1 deletion src/Entities/Channel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;

namespace KWiJisho.Entities
{
Expand Down
6 changes: 5 additions & 1 deletion src/Entities/ChannelTramontina.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus;
using System.Collections.Generic;
using static KWiJisho.Commands.CommandThemeTramontina;

Expand Down
6 changes: 5 additions & 1 deletion src/Entities/Color.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using DSharpPlus.Entities;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using DSharpPlus.Entities;
using Newtonsoft.Json;

namespace KWiJisho.Entities
Expand Down
6 changes: 5 additions & 1 deletion src/Entities/ConfigJson.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Newtonsoft.Json;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using Newtonsoft.Json;
using System.IO;
using System.Text;
using System.Threading.Tasks;
Expand Down
6 changes: 5 additions & 1 deletion src/Entities/Emoji.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using KWiJisho.Data;
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: @monambike for more information.
// For license information, please see the LICENSE file in the root directory.

using KWiJisho.Data;

namespace KWiJisho.Entities
{
Expand Down
Loading

0 comments on commit 1fb8702

Please sign in to comment.