package mindflow type Mindflow interface { New(post *Post) error Edit(post *Post) error Delete(id int64) error GetAll() ([]Post, error) }