1
0
Fork 0

Added Mindflow interface.

This commit is contained in:
Alexander Andreev 2023-05-10 03:19:02 +04:00
parent 3878ed33b3
commit 0dcd456e52
Signed by: Arav
GPG Key ID: D22A817D95815393
1 changed files with 7 additions and 0 deletions

7
pkg/mindflow/mindflow.go Normal file
View File

@ -0,0 +1,7 @@
package mindflow
type Mindflow interface {
New(post Post) error
Edit(post Post) error
Delete(id int64) error
}