mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
10 lines
241 B
Go
10 lines
241 B
Go
|
// Copyright 2017 Gerasimos Maropoulos, ΓΜ. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package context
|
||
|
|
||
|
type Handler func(Context)
|
||
|
|
||
|
type Handlers []Handler
|