mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-09 20:47:49 +00:00
15 lines
318 B
Go
15 lines
318 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
package globals
|
|
|
|
type Globals struct {
|
|
XLog10Organization string `header:"style=simple,explode=false,name=X-Log10-Organization"`
|
|
}
|
|
|
|
func (o *Globals) GetXLog10Organization() string {
|
|
if o == nil {
|
|
return ""
|
|
}
|
|
return o.XLog10Organization
|
|
}
|