Skip to content
Snippets Groups Projects

Use webpack for bundling JS libs and move Golang code related to Iframe generation there

Merged Igor Markin requested to merge feature-vcl-webpack-bundle into master
5 files
+ 398
38
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 0
14
package types
import "net/http"
// TODO: this type rather belongs to restful-api, but we have to declare it there and use in restful-api as dependency. Move to separate repository in the future.
type EndPoint struct {
Url string
Prefixes []string
HandlerType string
Form interface{}
ManuallyWritten bool
Handler func(http.ResponseWriter, *http.Request)
DoNotIntercept bool
}
Loading