Fix note rendering, new function header
Fixed note rendering due to bad user header TODO: It's a stupid bandaid, replace with proper formatter once it works Remove test stuff Some spacing in the colours for readability CreateNoteRemote header added
This commit is contained in:
parent
c919cc8c67
commit
599874c486
13 changed files with 78 additions and 71 deletions
|
@ -121,7 +121,13 @@ func (s *Storage) UpdateNote(note *Note) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (s *Storage) CreateNote() (*Note, error) {
|
||||
func (s *Storage) CreateNoteLocal() (*Note, error) {
|
||||
defer util.Untrace(util.Trace(&log.Logger))
|
||||
// TODO: Think of good arguments and implement me
|
||||
panic("not implemented")
|
||||
}
|
||||
|
||||
func (s *Storage) CreateNoteRemote() (*Note, error) {
|
||||
defer util.Untrace(util.Trace(&log.Logger))
|
||||
// TODO: Think of good arguments and implement me
|
||||
panic("not implemented")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue