7 lines
136 B
Go
7 lines
136 B
Go
package Interfaces
|
|
|
|
type RequestModelInterface interface {
|
|
ToJSON(header string) string
|
|
ToJSONItem(header string) map[string]string
|
|
}
|