-
Notifications
You must be signed in to change notification settings - Fork 1
/
minima-stable.json
1635 lines (1635 loc) · 37.7 KB
/
minima-stable.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Meta": {
"Generator": "1",
"Format": "1",
"Date": "2022-02-26 15:17:05.816800762 +0000 UTC m=+0.000108806"
},
"Functions": [
{
"Name": "*Config",
"Line": "func NewConfig() *Config",
"Description": "Make a new default config instance",
"Returns": {
"Type": "Config"
}
},
{
"Name": "*minima",
"Line": "func New() *minima",
"Description": "Make a new default minima instance",
"Returns": {
"Type": "minima"
}
},
{
"Name": "*Routes",
"Line": "func NewRoutes() *Routes",
"Description": "Makes a new Routes instance",
"Returns": {
"Type": "*Routes"
}
},
{
"Name": "matchRoutes",
"Line": "func matchRoutes(path string, routes []Route) (Handler, map[string]string, bool)",
"Description": "Matches routes to the request",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "Path of the request route to find"
},
{
"Name": "routes",
"Type": "[]Route",
"Description": "The array of routes to match"
}
],
"Returns": {
"Description": "{Handler, map[string]string, bool}"
}
},
{
"Name": "cleanArray",
"Line": "func cleanArray(a []string) []string",
"Description": "Cleans the array and finds non nill values",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The array of string to slice and clean"
}
],
"Returns": {
"Type": "[]string"
}
},
{
"Name": "request",
"Line": "func request(httpRequest *http.Request) *Request",
"Description": "Make a new default request instance",
"Parameters": [
{
"Name": "http.Request",
"Type": "http.Request",
"Description": "The net/http request instance"
}
],
"Returns": {
"Type": "Request"
}
},
{
"Name": "NewResHeader",
"Line": "func NewResHeader(res http.ResponseWriter, req *http.Request) *OutgoingHeader",
"Description": "Make a new default request header instance",
"Parameters": [
{
"Name": "req",
"Type": "http.Request",
"Description": "The net/http request instance"
},
{
"Name": "res",
"Type": "http.ResponseWriter",
"Description": "The net/http response instance"
}
],
"Returns": {
"Type": "OutgoingHeader"
}
},
{
"Name": "response",
"Line": "func response(rw http.ResponseWriter, req *http.Request, props *map[string]interface}) *Response",
"Description": "Make a new default response instance",
"Parameters": [
{
"Name": "req",
"Type": "http.Request",
"Description": "The net/http request instance"
},
{
"Name": "rs",
"Type": "http.ResponseWriter",
"Description": "The net/http response instance"
},
{
"Name": "props",
"Type": "map[string]interface",
"Description": "{map[string]interface{}} The net/http response instance"
}
],
"Returns": {
"Type": "Response"
}
},
{
"Name": "*Router",
"Line": "func NewRouter() *Router",
"Description": "Make new default router interface",
"Returns": {}
}
],
"Structures": [
{
"Name": "Config",
"Line": "type Config struct",
"Description": "The config structure",
"Properties": [
{
"Name": "Middleware",
"Type": "[]Handler",
"Description": "The minima middlewares to be used"
},
{
"Name": "HttpHandler",
"Type": "[]http.HandlerFunc",
"Description": "The net/http middlewares to be used"
},
{
"Name": "router",
"Type": "Router",
"Description": "The router instance to be used"
}
]
},
{
"Name": "minima",
"Line": "type minima struct",
"Description": "The framework structure",
"Functions": [
{
"Name": "Listen",
"Line": "func (m *minima) Listen(addr string) error",
"Description": "Starts the actual http server",
"Parameters": [
{
"Name": "addr",
"Type": "string",
"Description": "The port for the server instance to run on"
}
],
"Returns": {
"Type": "error"
}
},
{
"Name": "ServeHTTP",
"Line": "func (m *minima) ServeHTTP(w http.ResponseWriter, r *http.Request)",
"Description": "Injects the actual minima server logic to http",
"Parameters": [
{
"Name": "w",
"Type": "http.ResponseWriter",
"Description": "The net/http response instance"
},
{
"Name": "r",
"Type": "http.Request",
"Description": "The net/http request instance"
}
],
"Returns": {}
},
{
"Name": "Get",
"Line": "func (m *minima) Get(path string, handler Handler) *minima",
"Description": "Adds route with Get method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Put",
"Line": "func (m *minima) Put(path string, handler Handler) *minima",
"Description": "Adds route with Put method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Options",
"Line": "func (m *minima) Options(path string, handler Handler) *minima",
"Description": "Adds route with Options method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Head",
"Line": "func (m *minima) Head(path string, handler Handler) *minima",
"Description": "Adds route with Head method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Delete",
"Line": "func (m *minima) Delete(path string, handler Handler) *minima",
"Description": "Adds route with Delete method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Patch",
"Line": "func (m *minima) Patch(path string, handler Handler) *minima",
"Description": "Adds route with Patch method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Post",
"Line": "func (m *minima) Post(path string, handler Handler) *minima",
"Description": "Adds route with Post method",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler for the given route"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "NotFound",
"Line": "func (m *minima) NotFound(handler Handler) *minima",
"Description": "Injects the NotFound handler to the minima instance",
"Parameters": [
{
"Name": "handler",
"Type": "Handler",
"Description": "Minima handler instance"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "UseRouter",
"Line": "func (m *minima) UseRouter(router *Router) *minima",
"Description": "Injects the routes from the router to core stack",
"Parameters": [
{
"Name": "router",
"Type": "*Router",
"Description": "Minima router instance"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Mount",
"Line": "func (m *minima) Mount(path string, router *Router) *minima",
"Description": "Mounts router to a specific path",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "The route path"
},
{
"Name": "router",
"Type": "*Router",
"Description": "Minima router instance"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "UseConfig",
"Line": "func (m *minima) UseConfig(config *Config) *minima",
"Description": "Injects middlewares and routers directly to core instance",
"Parameters": [
{
"Name": "config",
"Type": "*Config",
"Description": "The config instance"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "ShutdownTimeout",
"Line": "func (m *minima) ShutdownTimeout(t time.Duration) *minima",
"Description": "The drain timeout for the core instance",
"Parameters": [
{
"Name": "time",
"Type": "time.Duration",
"Description": "The time period for drain"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "Shutdown",
"Line": "func (m *minima) Shutdown(ctx context.Context) error",
"Description": "Shutdowns the core instance",
"Parameters": [
{
"Name": "ctx",
"Type": "context.Context",
"Description": "The context for shutdown"
}
],
"Returns": {
"Type": "error"
}
},
{
"Name": "SetProp",
"Line": "func (m *minima) SetProp(key string, value interface}) *minima",
"Description": "Declares prop for core properties",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key for the prop"
},
{
"Name": "value",
"Type": "interface",
"Description": "{interface{}} Value of the prop"
}
],
"Returns": {
"Type": "*minima"
}
},
{
"Name": "GetProp",
"Line": "func (m *minima) GetProp(key string) interface}",
"Description": "Gets prop from core properties",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key for the prop"
}
],
"Returns": {
"Type": "interface",
"Description": "{interface{}}"
}
},
{
"Name": "Use",
"Line": "func (m *minima) Use(handler ...Handler)",
"Description": "Injects minima middleware to the stack",
"Parameters": [
{
"Name": "handler",
"Type": "...Handler",
"Description": "The handler stack to append"
}
],
"Returns": {}
},
{
"Name": "UseRaw",
"Line": "func (m *minima) UseRaw(handler ...http.HandlerFunc)",
"Description": "Injects net/http middleware to the stack",
"Parameters": [
{
"Name": "handler",
"Type": "...http.HandlerFunc",
"Description": "The handler stack to append"
}
],
"Returns": {}
},
{
"Name": "ServeMiddleware",
"Line": "func (m *minima) ServeMiddleware(res *Response, req *Request)",
"Description": "Serves and injects the middlewares to minima logic",
"Parameters": [
{
"Name": "res",
"Type": "Response",
"Description": "The minima response instance"
},
{
"Name": "req",
"Type": "Request",
"Description": "The minima req instance"
}
],
"Returns": {}
}
],
"Properties": [
{
"Name": "server",
"Type": "*http.Server",
"Description": "The net/http stock server"
},
{
"Name": "started",
"Type": "bool",
"Description": "Whether the server has started or not"
},
{
"Name": "Timeout",
"Type": "*time.Duration",
"Description": "The router's breathing time"
},
{
"Name": "router",
"Type": "*Router",
"Description": "The core router instance running with the server"
},
{
"Name": "minmiddleware",
"Type": "[]Handler",
"Description": "The standard minima handler stack"
},
{
"Name": "rawmiddleware",
"Type": "[]http.HandlerFunc",
"Description": "The raw net/http minima handler stack"
},
{
"Name": "properties",
"Type": "map[string]interface",
"Description": "{map[string]interface{}} The properties for the server instance"
},
{
"Name": "Config",
"Type": "*Config",
"Description": "The core config file for middlewares and router instances"
},
{
"Name": "drain",
"Type": "*time.Duration",
"Description": "The router's drain time"
}
]
},
{
"Name": "param",
"Line": "type param struct",
"Description": "The Param structure",
"Properties": [
{
"Name": "name",
"Type": "string",
"Description": "The name of the param"
},
{
"Name": "fixed",
"Type": "bool",
"Description": "Whether the param is fixed or not"
}
]
},
{
"Name": "Route",
"Line": "type Route struct",
"Description": "The Route structure",
"Properties": [
{
"Name": "prefix",
"Type": "string",
"Description": "The prefix of the route"
},
{
"Name": "partnames",
"Type": "[]param",
"Description": "The route paths split into parts"
},
{
"Name": "function",
"Type": "Handler",
"Description": "The handler to be used"
}
]
},
{
"Name": "Routes",
"Line": "type Routes struct",
"Description": "The Routes root structure",
"Functions": [
{
"Name": "Add",
"Line": "func (r *Routes) Add(p string, f Handler)",
"Description": "Adds a new route to the routes table",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "Path of the route"
},
{
"Name": "handler",
"Type": "Handler",
"Description": "Handler of the route"
}
],
"Returns": {}
},
{
"Name": "Get",
"Line": "func (r *Routes) Get(path string) (Handler, map[string]string, bool)",
"Description": "Gets handler and params from the routes table",
"Parameters": [
{
"Name": "path",
"Type": "string",
"Description": "Path of the route to find"
}
],
"Returns": {
"Description": "{Handler, map[string]string, bool}"
}
}
],
"Properties": [
{
"Name": "roots",
"Type": "map[string][]Route",
"Description": "The map of array routes"
}
]
},
{
"Name": "ReqHeader",
"Line": "type ReqHeader struct",
"Description": "The request headers structure",
"Properties": [
{
"Name": "key",
"Type": "string",
"Description": "Key for the header"
},
{
"Name": "value",
"Type": "string",
"Description": "Value of the header"
}
]
},
{
"Name": "IncomingHeader",
"Line": "type IncomingHeader struct",
"Description": "The Incoming header structure",
"Functions": [
{
"Name": "Get",
"Line": "func (h IncomingHeader) Get(key string) string",
"Description": "Gets request header from given key",
"Returns": {}
},
{
"Name": "Set",
"Line": "func (h *IncomingHeader) Set(key string, v string)",
"Description": "Declares request header from given key",
"Returns": {}
}
],
"Properties": [
{
"Name": "headers",
"Type": "[]*ReqHeader",
"Description": "Array of request headers"
}
]
},
{
"Name": "Request",
"Line": "type Request struct",
"Description": "The request structure",
"Functions": [
{
"Name": "GetParam",
"Line": "func (r *Request) GetParam(key string) string",
"Description": "Gets param from route path",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key of the route param"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "SetParam",
"Line": "func (r *Request) SetParam(key string, value string) *Request",
"Description": "Sets param for route path",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key of the route param"
},
{
"Name": "value",
"Type": "string",
"Description": "Value of the route param"
}
],
"Returns": {
"Type": "Response"
}
},
{
"Name": "string",
"Line": "func (r *Request) GetPathURL() string",
"Description": "Gets request path url",
"Returns": {
"Type": "string"
}
},
{
"Name": "map[string][]string",
"Line": "func (r *Request) Body() map[string][]string",
"Description": "Gets raw request body",
"Returns": {
"Type": "map[string][]string"
}
},
{
"Name": "GetBodyValue",
"Line": "func (r *Request) GetBodyValue(key string) []string",
"Description": "Gets specified request body",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key of the request body"
}
],
"Returns": {
"Type": "[]string"
}
},
{
"Name": "*json.Decoder",
"Line": "func (r *Request) Json() *json.Decoder",
"Description": "Gets raw json decoder instance",
"Returns": {
"Type": "json.Decoder"
}
},
{
"Name": "string",
"Line": "func (r *Request) Method() string",
"Description": "Gets method of request",
"Returns": {
"Type": "string"
}
},
{
"Name": "*http.Request",
"Line": "func (r *Request) Raw() *http.Request",
"Description": "Gets raw net/http request instance",
"Returns": {
"Type": "http.Request"
}
},
{
"Name": "GetQuery",
"Line": "func (r *Request) GetQuery(key string) string",
"Description": "Gets request path query",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "key of the request query"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "[]*http.Cookie",
"Line": "func (r *Request) Cookies() []*http.Cookie",
"Description": "Get all the cookies from the request",
"Returns": {
"Type": "[]*http.Cookie"
}
},
{
"Name": "Cookie",
"Line": "func (r *Request) Cookie(key string) *http.Cookie",
"Description": "Get a paticular cookie by its key",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "key of the cookie"
}
],
"Returns": {
"Type": "*http.Cookie"
}
},
{
"Name": "SetHeader",
"Line": "func (r *Request) SetHeader(key string, value string) *Request",
"Description": "Set a paticular Header",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "key of the Header"
},
{
"Name": "value",
"Type": "string",
"Description": "value of the Header"
}
],
"Returns": {
"Type": "*Request"
}
},
{
"Name": "GetHeader",
"Line": "func (r *Request) GetHeader(key string) string",
"Description": "Get a paticular Header by its key",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "key of the Header"
}
],
"Returns": {
"Type": "string"
}
}
],
"Properties": [
{
"Name": "ref",
"Type": "*http.Request",
"Description": "The net/http request instance"
},
{
"Name": "fileReader",
"Type": "multipart.Reader",
"Description": "file reader instance"
},
{
"Name": "body",
"Type": "map[string][]string",
"Description": "Value of the request body"
},
{
"Name": "method",
"Type": "string",
"Description": "Request method"
},
{
"Name": "Params",
"Type": "[]*Params",
"Description": "Request path parameters"
},
{
"Name": "url.Values",
"Type": "query",
"Description": "Request path query params"
},
{
"Name": "header",
"Type": "IncomingHeader",
"Description": "Incoming headers of the request"
},
{
"Name": "json",
"Type": "json.Decoder",
"Description": "Json decoder instance"
}
]
},
{
"Name": "OutgoingHeader",
"Line": "type OutgoingHeader struct",
"Description": "The Outgoing header structure",
"Functions": [
{
"Name": "Set",
"Line": "func (h *OutgoingHeader) Set(key string, value string) *OutgoingHeader",
"Description": "Sets and new header to response",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key of the new header"
},
{
"Name": "value",
"Type": "string",
"Description": "Value of the new header"
}
],
"Returns": {
"Type": "OutgoingHeader"
}
},
{
"Name": "Get",
"Line": "func (h *OutgoingHeader) Get(key string) string",
"Description": "Gets the header from response headers",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key of the header"
}
],
"Returns": {
"Type": "string"
}
},
{
"Name": "Del",
"Line": "func (h *OutgoingHeader) Del(key string) *OutgoingHeader",
"Description": "Deletes header from respose",
"Parameters": [
{
"Name": "key",
"Type": "string",
"Description": "Key of the header"
}
],
"Returns": {
"Type": "OutgoingHeader"
}
},
{
"Name": "http.Header",
"Line": "func (h *OutgoingHeader) Clone() http.Header",
"Description": "Clones all headers from response",
"Returns": {
"Type": "OutgoingHeader"
}
},
{
"Name": "Setlength",
"Line": "func (h *OutgoingHeader) Setlength(len string) *OutgoingHeader",
"Description": "Sets content lenght",
"Parameters": [
{
"Name": "len",
"Type": "string",
"Description": "The lenght of the content"
}
],
"Returns": {
"Type": "OutgoingHeader"
}
},
{
"Name": "Status",
"Line": "func (h *OutgoingHeader) Status(code int) *OutgoingHeader",
"Description": "Sets response status",
"Parameters": [
{
"Name": "code",
"Type": "int",
"Description": "The status code for the response"
}
],
"Returns": {
"Type": "OutgoingHeader"
}
},
{
"Line": "func (h *OutgoingHeader) BaseHeaders()",
"Description": "Sends good stack of base headers",
"Returns": {}
},
{
"Name": "bool",
"Line": "func (h *OutgoingHeader) Flush() bool",