We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64561ab commit 2cebc54Copy full SHA for 2cebc54
fiber/README.md
@@ -16,6 +16,7 @@ APItoolkit is an end-to-end API and web services management toolkit for engineer
16
## Table of Contents
17
18
- [Installation](#installation)
19
+- [Configuration](#configuration)
20
- [Contributing and Help](#contributing-and-help)
21
- [License](#license)
22
@@ -34,6 +35,18 @@ Then add `github.com/apitoolkit/apitoolkit-go/fiber` to the list of dependencies
34
35
```go
36
package main
37
38
+import (
39
+ apitoolkit "github.com/apitoolkit/apitoolkit-go/fiber"
40
+)
41
+```
42
+
43
+## Configuration
44
45
+Next, initialize APItoolkit in your application's entry point (e.g., `main.go`) like so:
46
47
+```go
48
+package main
49
50
import (
51
"context"
52
0 commit comments