Skip to content
This repository was archived by the owner on Nov 16, 2024. It is now read-only.

Tarocch1/kid

Repository files navigation

Kid

Simple web framework written in Go

Go Reference

Installation

go get -u github.com/Tarocch1/kid

Quickstart

package main

import (
    "github.com/Tarocch1/kid"
    "github.com/Tarocch1/kid/middlewares/recovery"
)

func main() {
    k := kid.New()
    k.Use(recovery.New())

    k.Get("/", func(c *kid.Ctx) error {
        return c.String("Hello, World 👋!")
    })

    k.Listen(":3000")
}

About

Simple web framework written in Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages