-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dima Kossovich
committed
Sep 21, 2024
1 parent
48a8336
commit 4a84cdf
Showing
1 changed file
with
0 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ You can measure performance comparing to vanilla `for` loop on your machine usin | |
is better when multithreading). | ||
|
||
## Table of Contents | ||
- [Repository Renamed](#repository-renamed) | ||
- [Getting Started](#getting-started) | ||
- [Basic information](#basic-information) | ||
- [Supported functions list](#supported-functions-list) | ||
|
@@ -49,29 +48,6 @@ is better when multithreading). | |
- [Contributions](#contributions) | ||
- [What's next?](#whats-next) | ||
|
||
# Repository Renamed | ||
|
||
This repository has been renamed from github.com/koss-null/lambda to github.com/koss-null/funcfrog. | ||
Please **update** any local clones or remotes to reflect this change. | ||
|
||
To update a local clone of the repository, you can use the following command: | ||
```bash | ||
# HTTP | ||
$ git remote set-url origin https://github.com/koss-null/funcfrog | ||
# SSH | ||
$ git remote set-url origin [email protected]:koss-null/FuncFrog.git | ||
``` | ||
This command will update the URL of the "origin" reomte to the new repository URL. | ||
|
||
To update the import path of the repository in go code, you can use the following import statement: | ||
```go | ||
import "github.com/koss-null/funcfrog" | ||
``` | ||
then in your project use: | ||
```bash | ||
go get github.com/koss-null/funcfrog | ||
``` | ||
|
||
## Getting Started | ||
|
||
To use FuncFrog in your project, run the following command: | ||
|