Skip to content

Commit

Permalink
update github organization name (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
senchabot-github authored Aug 1, 2023
1 parent 7431e25 commit 195d1a4
Show file tree
Hide file tree
Showing 37 changed files with 68 additions and 68 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Senchabot apps and packages
1. Clone the repo

```sh
git clone https://github.com/senchabot-dev/monorepo.git
git clone https://github.com/senchabot-opensource/monorepo.git
cd monorepo
```

Expand Down
14 changes: 7 additions & 7 deletions apps/discord-bot/cmd/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (
"sync"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/client"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/command"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/service/event"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/service/streamer"
"github.com/senchabot-dev/monorepo/packages/common/commands"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/client"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/command"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/service/event"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/service/streamer"
"github.com/senchabot-opensource/monorepo/packages/common/commands"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions apps/discord-bot/internal/command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"time"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/client"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/service/streamer"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/client"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/service/streamer"
)

const errorMessage = "İşlem gerçekleştirilirken hata oluştu. Hata kodu: "
Expand Down
6 changes: 3 additions & 3 deletions apps/discord-bot/internal/command/deletecommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"log"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/service/streamer"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/service/streamer"
)

func (c *commands) DeleteCommand(ctx context.Context, s *discordgo.Session, i *discordgo.InteractionCreate, db db.MySQL) {
Expand Down
2 changes: 1 addition & 1 deletion apps/discord-bot/internal/command/purgecommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/db"
)

func (c *commands) PurgeCommand(ctx context.Context, s *discordgo.Session, i *discordgo.InteractionCreate, db db.MySQL) {
Expand Down
4 changes: 2 additions & 2 deletions apps/discord-bot/internal/command/setcommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"log"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/helpers"
)

func (c *commands) SetCommand(ctx context.Context, s *discordgo.Session, i *discordgo.InteractionCreate, db db.MySQL) {
Expand Down
2 changes: 1 addition & 1 deletion apps/discord-bot/internal/db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"time"

"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/models"
"gorm.io/driver/mysql"
"gorm.io/gorm"
"gorm.io/gorm/logger"
Expand Down
2 changes: 1 addition & 1 deletion apps/discord-bot/internal/helpers/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
"strings"

"github.com/senchabot-dev/monorepo/apps/discord-bot/client"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/client"
)

func GetURL(domain, messageContent string) string {
Expand Down
4 changes: 2 additions & 2 deletions apps/discord-bot/internal/service/event/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"time"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/client"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/client"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/helpers"
)

func CreateLiveStreamScheduledEvent(s *discordgo.Session, msgContent string, msgEmbeds []*discordgo.MessageEmbed, guildId string, wg *sync.WaitGroup) {
Expand Down
6 changes: 3 additions & 3 deletions apps/discord-bot/internal/service/streamer/streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"time"

"github.com/bwmarrin/discordgo"
"github.com/senchabot-dev/monorepo/apps/discord-bot/client"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-dev/monorepo/apps/discord-bot/internal/helpers"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/client"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/db"
"github.com/senchabot-opensource/monorepo/apps/discord-bot/internal/helpers"
)

type GuildStreamers struct {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Installing
1. Clone the repo and navigate to the monorepo directory

```sh
git clone https://github.com/senchabot-dev/monorepo.git
git clone https://github.com/senchabot-opensource/monorepo.git
cd monorepo
```

Expand Down
6 changes: 3 additions & 3 deletions apps/twitch-bot/cmd/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"os"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/handler"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/handler"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/documentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ These commands can be edited as described in the [Custom Commands](#custom-comma
| !kampus | discord.gg/kampus • github.com/kamp-us |
| !lurk | Teşekkürler! {user.name} |
| !ping | pong! VoHiYo |
| !senchabot | Open source multi-platform bot development project, which works on Twitch and Discord. • senchabot.app • github.com/senchabot-dev/monorepo |
| !senchabot | Open source multi-platform bot development project, which works on Twitch and Discord. • senchabot.app • github.com/senchabot-opensource/monorepo |
| !sozluk [term-name] | (Reply to user) Term: Description |

### Custom Commands
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/addcommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"
)

const ADD_COMMAND_INFO = "For example: !acmd [command_name] [command_content]"
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/addcommandalias.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"
)

const ADD_COMMAND_ALIAS_INFO = "For example: !acmda [command_name] [command_alias(es) separated by space]"
Expand Down
6 changes: 3 additions & 3 deletions apps/twitch-bot/internal/command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"strings"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service"
)

type Command interface {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/deletecommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"
)

const DELETE_COMMAND_INFO = "For example: !dcmd [command_name]"
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/deletecommandalias.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"
)

const DELETE_COMMAND_ALIAS_INFO = "For example: !dcmda [command_alias]"
Expand Down
4 changes: 2 additions & 2 deletions apps/twitch-bot/internal/command/helpers/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"strings"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/invite.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
)

func (c *commands) InviteCommand(context context.Context, message twitch.PrivateMessage, commandName string, params []string) {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/senchabot.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import (
)

func (c *commands) SenchabotCommand(context context.Context, message twitch.PrivateMessage, commandName string, params []string) {
c.client.Twitch.Say(message.Channel, "An open-source, multi-platform bot designed for seamless integration with Twitch and Discord • senchabot.app • github.com/senchabot-dev/monorepo")
c.client.Twitch.Say(message.Channel, "An open-source, multi-platform bot designed for seamless integration with Twitch and Discord • senchabot.app • github.com/senchabot-opensource/monorepo")
}
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/sozluk.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"

"github.com/gempir/go-twitch-irc/v3"
common_cmd "github.com/senchabot-dev/monorepo/packages/common/commands"
common_cmd "github.com/senchabot-opensource/monorepo/packages/common/commands"
)

func (c *commands) SozlukCommand(context context.Context, message twitch.PrivateMessage, commandName string, params []string) {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/command/updatecommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"
)

const UPDATE_COMMAND_INFO = "For example: !ucmd [command_name] [new_command_content]"
Expand Down
6 changes: 3 additions & 3 deletions apps/twitch-bot/internal/handler/botjoin.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"fmt"
"log"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service"
)

func BotJoin(client *client.Clients, service service.Service) []string {
Expand Down
4 changes: 2 additions & 2 deletions apps/twitch-bot/internal/handler/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package handler
import (
"net/http"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service"
)

type Handler interface {
Expand Down
8 changes: 4 additions & 4 deletions apps/twitch-bot/internal/handler/privatemessage.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"context"

"github.com/gempir/go-twitch-irc/v3"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/command/helpers"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/command/helpers"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service"
)

func PrivateMessage(client *client.Clients, service service.Service) {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/service/database/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package database
import (
"context"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
)

type Database interface {
Expand Down
4 changes: 2 additions & 2 deletions apps/twitch-bot/internal/service/database/mysql/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"fmt"
"os"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service/database"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service/database"
"gorm.io/driver/mysql"
"gorm.io/gorm"
"gorm.io/gorm/logger"
Expand Down
10 changes: 5 additions & 5 deletions apps/twitch-bot/internal/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import (
"fmt"
"net/http"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service/database"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service/database/mysql"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/service/webhook"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service/database"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service/database/mysql"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/service/webhook"
)

type Service interface {
Expand Down
4 changes: 2 additions & 2 deletions apps/twitch-bot/internal/service/webhook/botjoin.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"strings"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-dev/monorepo/apps/twitch-bot/internal/models"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/internal/models"
)

func (*webhooks) BotJoin(client *client.Clients, joinedChannelList []string, w http.ResponseWriter, r *http.Request) {
Expand Down
2 changes: 1 addition & 1 deletion apps/twitch-bot/internal/service/webhook/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package webhook
import (
"net/http"

"github.com/senchabot-dev/monorepo/apps/twitch-bot/client"
"github.com/senchabot-opensource/monorepo/apps/twitch-bot/client"
)

type Webhook interface {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Web application for managing Senchabot, its commands and configuring the bot.
1. Clone the repository

```sh
git clone https://github.com/senchabot-dev/monorepo.git
git clone https://github.com/senchabot-opensource/monorepo.git
cd monorepo
```

Expand Down
2 changes: 1 addition & 1 deletion apps/web/env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ NEXT_PUBLIC_APP_NAME="Senchabot"
NEXT_PUBLIC_APP_URL=https://senchabot.app
NEXT_PUBLIC_APP_VERSION="pre-alpha"

NEXT_PUBLIC_APP_GITHUB_PROFILE="https://github.com/senchabot-dev/monorepo"
NEXT_PUBLIC_APP_GITHUB_PROFILE="https://github.com/senchabot-opensource/monorepo"
NEXT_PUBLIC_APP_TWITTER_PROFILE="https://twitter.com/senchabot"
NEXT_PUBLIC_APP_LINKEDIN_PROFILE="https://www.linkedin.com/company/senchabot/"

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/senchabot-dev/monorepo
module github.com/senchabot-opensource/monorepo

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"repository": "https://github.com/senchabot-dev/monorepo.git",
"repository": "https://github.com/senchabot-opensource/monorepo.git",
"private": true,
"workspaces": [
"apps/*",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/commands/sozluk.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"strings"

"github.com/senchabot-dev/monorepo/packages/common/helpers"
"github.com/senchabot-opensource/monorepo/packages/common/helpers"
)

const (
Expand Down

0 comments on commit 195d1a4

Please sign in to comment.