github.com/kotovmak/go-admin@v1.1.1/modules/constant/constant.go (about)

     1  package constant
     2  
     3  const (
     4  	// PjaxHeader is default pjax http header key.
     5  	PjaxHeader = "X-PJAX"
     6  
     7  	// PjaxUrlHeader is default pjax url http header key.
     8  	PjaxUrlHeader = "X-PJAX-Url"
     9  
    10  	// Title is default title of the project.
    11  	Title = "GoAdmin"
    12  
    13  	ContextNodeNeedAuth = "need_auth"
    14  
    15  	IframeKey   = "__goadmin_iframe"
    16  	IframeIDKey = "__goadmin_iframe_id"
    17  )