1
0
Fork 0
forked from goffee/todoapp
todoapp/middlewares/another-example-middleware.go.go

18 lines
408 B
Go
Raw Permalink Normal View History

2024-09-15 14:36:50 -04:00
// Copyright 2023 Harran Ali <harran.m@gmail.com>. All rights reserved.
// Use of this source code is governed by MIT-style
// license that can be found in the LICENSE file.
package middlewares
import (
"fmt"
"git.smarteching.com/goffee/core"
)
// Another example middleware
var AnotherExampleMiddleware core.Middleware = func(c *core.Context) {
fmt.Println("another example middleware!")
c.Next()
}