input is struct that holds input from user and result
| 14 | |
| 15 | // input is struct that holds input from user and result |
| 16 | type input struct { |
| 17 | Input string |
| 18 | Result string |
| 19 | } |
| 20 | |
| 21 | // StringManipulation is an interface that holds all abstract methods to manipulate strings |
| 22 | type StringManipulation interface { |
nothing calls this directly
no outgoing calls
no test coverage detected