From 5302a2a1fab92e16509b2854270b4f3cf396ef2a Mon Sep 17 00:00:00 2001 From: Bolaji Ayodeji Date: Mon, 22 Jul 2024 11:12:47 +0100 Subject: [PATCH] Update README.md --- chi/README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/chi/README.md b/chi/README.md index 42479af..d23b032 100644 --- a/chi/README.md +++ b/chi/README.md @@ -16,6 +16,7 @@ APItoolkit is an end-to-end API and web services management toolkit for engineer ## Table of Contents - [Installation](#installation) +- [Configuration](#configuration) - [Contributing and Help](#contributing-and-help) - [License](#license) @@ -29,7 +30,20 @@ Kindly run the command below to install the SDK: go get github.com/apitoolkit/apitoolkit-go/chi ``` -Then add `github.com/apitoolkit/apitoolkit-go/chi` to the list of dependencies, like so: +Then add `github.com/apitoolkit/apitoolkit-go/chi` to the list of dependencies like so: + +```go +package main + +import ( + apitoolkit "github.com/apitoolkit/apitoolkit-go/chi" +) +``` + +## Configuration + +Next, initialize APItoolkit in your application's entry point (e.g., `main.go`) like so: + ```go package main