Skip to content

Commit

Permalink
fix: change module path to gofarsi
Browse files Browse the repository at this point in the history
  • Loading branch information
Ja7ad committed Nov 26, 2023
1 parent 85343cd commit de04c29
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Scheduler
[![Go Reference](https://pkg.go.dev/badge/github.com/Ja7ad/scheduler.svg)](https://pkg.go.dev/github.com/Ja7ad/scheduler)
[![Go Reference](https://pkg.go.dev/badge/github.com/GoFarsi/scheduler.svg)](https://pkg.go.dev/github.com/GoFarsi/scheduler)

[Scheduler](https://pkg.go.dev/github.com/Ja7ad/scheduler) package is a zero-dependency scheduling library for Go
[Scheduler](https://pkg.go.dev/github.com/GoFarsi/scheduler) package is a zero-dependency scheduling library for Go

# Install
```console
go get -u github.com/Ja7ad/scheduler
go get -u github.com/GoFarsi/scheduler
```

# Features
Expand All @@ -23,7 +23,7 @@ package main

import (
"fmt"
"github.com/Ja7ad/scheduler"
"github.com/GoFarsi/scheduler"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion _example/multiple/jobs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/Ja7ad/scheduler"
"github.com/GoFarsi/scheduler"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion _example/multiple/scheduler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/Ja7ad/scheduler"
"github.com/GoFarsi/scheduler"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion _example/sample/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/Ja7ad/scheduler"
"github.com/GoFarsi/scheduler"
)

func main() {
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/Ja7ad/scheduler
module github.com/GoFarsi/scheduler

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion helper/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package helper
import (
"crypto/sha256"
"fmt"
"github.com/Ja7ad/scheduler/errs"
"github.com/GoFarsi/scheduler/errs"
"reflect"
"runtime"
"strconv"
Expand Down
6 changes: 3 additions & 3 deletions job.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package scheduler

import (
"fmt"
"github.com/Ja7ad/scheduler/errs"
"github.com/Ja7ad/scheduler/helper"
"github.com/Ja7ad/scheduler/types"
"github.com/GoFarsi/scheduler/errs"
"github.com/GoFarsi/scheduler/helper"
"github.com/GoFarsi/scheduler/types"
"log"
"reflect"
"time"
Expand Down
2 changes: 1 addition & 1 deletion job.partial.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package scheduler

import (
"fmt"
"github.com/Ja7ad/scheduler/types"
"github.com/GoFarsi/scheduler/types"
"time"
)

Expand Down
4 changes: 2 additions & 2 deletions scheduler.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package scheduler

import (
"github.com/Ja7ad/scheduler/helper"
"github.com/Ja7ad/scheduler/types"
"github.com/GoFarsi/scheduler/helper"
"github.com/GoFarsi/scheduler/types"
"sort"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions scheduler.partial.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package scheduler

import (
"github.com/Ja7ad/scheduler/helper"
"github.com/Ja7ad/scheduler/types"
"github.com/GoFarsi/scheduler/helper"
"github.com/GoFarsi/scheduler/types"
"time"
)

Expand Down
4 changes: 2 additions & 2 deletions scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package scheduler

import (
"fmt"
"github.com/Ja7ad/scheduler/helper"
"github.com/Ja7ad/scheduler/types"
"github.com/GoFarsi/scheduler/helper"
"github.com/GoFarsi/scheduler/types"
"github.com/stretchr/testify/assert"
"log"
"sync"
Expand Down
2 changes: 1 addition & 1 deletion units.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package scheduler

import (
"github.com/Ja7ad/scheduler/types"
"github.com/GoFarsi/scheduler/types"
"time"
)

Expand Down

0 comments on commit de04c29

Please sign in to comment.