Skip to content

Commit

Permalink
feat(doc): add doc
Browse files Browse the repository at this point in the history
  • Loading branch information
dhyanio committed Oct 30, 2024
1 parent 9b0ae9f commit c15e974
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# GoLB: Simple but easy to use Golang Loadbalancer
<img src="./doc/golb.png" alt="Discache" width="700"/>

GoLB is a simple RoundRobin golang loadbalancer. It performs active cleaning and passive recovery for unhealty backends.

GoLB is a simple RoundRobin golang loadbalancer. It performs active cleaning and passive recovery for unhealty backends.
Binary file added doc/golb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion error.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package gloadbalancer
package golb

import "fmt"

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 github.com/dhyanio/gloadbalancer
module github.com/dhyanio/golb

go 1.23.1
2 changes: 1 addition & 1 deletion loadbalancer.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package gloadbalancer
package golb

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package gloadbalancer
package golb

import (
"net/http"
Expand Down

0 comments on commit c15e974

Please sign in to comment.