dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

interceptor.go (147B)


      1 package interceptors
      2 
      3 import (
      4 	"dkforest/pkg/web/handlers/interceptors/command"
      5 )
      6 
      7 type Interceptor interface {
      8 	InterceptMsg(*command.Command)
      9 }