Skip to content

Commit

Permalink
rename go module
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed Mirghani committed Aug 1, 2023
1 parent 9448798 commit 41815bc
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mini-go-redis
# mini-mini-go-redisis

a simple Redis server implementation, designed for learning Golang and understanding the inner workings of Redis.

Expand All @@ -22,4 +22,4 @@ a simple Redis server implementation, designed for learning Golang and understan
- [ ] Replication


Stay tuned for upcoming updates and improvements to mini-go-redis :rocket:
Stay tuned for upcoming updates and improvements to mini-mini-go-redisis :rocket:
2 changes: 1 addition & 1 deletion commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"go-red/storage"
"mini-go-redis/storage"
"strconv"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"go-red/storage"
"mini-go-redis/storage"
"strconv"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module go-red
module mini-go-redis

go 1.20
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"net"
"os"

"go-red/commands"
"go-red/config"
"go-red/parser"
"go-red/storage"
"mini-go-redis/commands"
"mini-go-redis/config"
"mini-go-redis/parser"
"mini-go-redis/storage"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"strings"

"go-red/commands"
"mini-go-redis/commands"
)

type Parser struct {
Expand Down
2 changes: 1 addition & 1 deletion parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package parser

import (
"bufio"
"go-red/commands"
"mini-go-redis/commands"
"strings"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion storage/storage.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package storage

import "go-red/config"
import "mini-go-redis/config"

func (storage *Storage) Set(key string, value string, rawData []byte) (err error) {
storage.m[key] = value
Expand Down

0 comments on commit 41815bc

Please sign in to comment.