marknotes-go/note.go

15 lines
280 B
Go
Raw Permalink Normal View History

2015-09-28 22:38:17 +00:00
package main
// define note structure
type note struct {
slug string
title string
note string
url string
file bool
} // end note structure
func NoteNew (title string, slug string, url string, file bool) (id int) {
return 1
} // func DBNew