forked from goffee/todoapp
17 lines
385 B
Go
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()
|
|
}
|