MakeCode converts a string into a Code.
(s string)
| 15 | |
| 16 | // MakeCode converts a string into a Code. |
| 17 | func MakeCode(s string) Code { |
| 18 | return Code{code: s} |
| 19 | } |
| 20 | |
| 21 | // String returns the underlying pgcode string. |
| 22 | func (c Code) String() string { |
no outgoing calls
no test coverage detected
searching dependent graphs…