Post-Migrator/main.go
2024-05-09 15:25:13 -06:00

14 lines
334 B
Go

package main
const baseUrl = "https://go-api-playground.local/wp-json/wp/v2/"
const wordpressKey = "admin"
const wordpressSecret = "S34E keY1 A1uX 6ncs Rx4T f21W"
var appCache AppCache
func main() {
// TODO Create Category with or without parent + add to cache
// TODO Use cached data to correctly build post form submissions
}