mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-12 03:01:21 +00:00
v1.0.2
This commit is contained in:
parent
52712b3e4a
commit
31876e3109
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
<script>
|
||||
window.$docsify = {
|
||||
name: 'Fiber v1.0.1-beta',
|
||||
name: 'Fiber v1.0.2',
|
||||
repo: 'gofiber/fiber',
|
||||
loadSidebar: "sidebar.md",
|
||||
homepage: 'getting_started.md',
|
||||
|
6
fiber.go
6
fiber.go
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
@ -15,7 +15,7 @@ import (
|
||||
|
||||
const (
|
||||
// Version for debugging
|
||||
Version = "1.0.1-beta"
|
||||
Version = "1.0.2"
|
||||
// https://play.golang.org/p/r6GNeV1gbH
|
||||
banner = "" +
|
||||
" \x1b[1;32m _____ _ _\n" +
|
||||
|
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
@ -1,10 +1,9 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
// 💖 @valyala, @dgrr, @erikdubbelboer, @savsgio, @julienschmidt
|
||||
|
||||
package fiber
|
||||
|
||||
import (
|
||||
|
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
4
utils.go
4
utils.go
@ -1,5 +1,5 @@
|
||||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🔌 Fiber is an Expressjs inspired web framework build on 🚀 Fasthttp.
|
||||
// 📌 Please open an issue if you got suggestions or found a bug!
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
|
Loading…
x
Reference in New Issue
Block a user