mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
14 lines
170 B
Go
14 lines
170 B
Go
package main
|
|
|
|
import (
|
|
"GohCMS2/api"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
api.InitContainer()
|
|
|
|
fmt.Println(api.CreateArticle("Title", "Content"))
|
|
fmt.Println(api.GetArticle(1))
|
|
}
|