compositeNoteID creates a valid Note ID from the required components
(endpoint string, notefile string)
| 68 | |
| 69 | // compositeNoteID creates a valid Note ID from the required components |
| 70 | func compositeNoteID(endpoint string, notefile string) string { |
| 71 | return endpoint + ReservedIDDelimiter + notefile |
| 72 | } |
| 73 | |
| 74 | // parseCompositeNoteID extracts componets from a Notebox Note ID |
| 75 | func parseCompositeNoteID(noteid string) (isInstance bool, endpoint string, notefile string) { |
no outgoing calls
no test coverage detected