1
0
Fork 0
forked from goffee/todoapp
todoapp/middlewares/example-middleware.go
2024-09-15 13:36:50 -05:00

17 lines
385 B
Go

// 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"
)
// Example middleware
var ExampleMiddleware core.Middleware = func(c *core.Context) {
fmt.Println("example middleware!")
c.Next()
}