mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
9 lines
142 B
Go
9 lines
142 B
Go
package handlers
|
|
|
|
type Handlers struct{}
|
|
|
|
// New creates a new instances of web server handlers.
|
|
func New() *Handlers {
|
|
return &Handlers{}
|
|
}
|