Link represents a short link
| 26 | |
| 27 | // Link represents a short link |
| 28 | type Link struct { |
| 29 | ShortLink string |
| 30 | Target string |
| 31 | Owner string |
| 32 | } |
| 33 | |
| 34 | // CreateLink handles requests to create links |
| 35 | func CreateLink(c web.C, w http.ResponseWriter, r *http.Request) { |
nothing calls this directly
no outgoing calls
no test coverage detected