feat: midjourney plus service is ready

This commit is contained in:
RockYang
2024-01-11 18:16:48 +08:00
parent ba07946f1e
commit 857af61af1
13 changed files with 671 additions and 71 deletions

View File

@@ -1,5 +1,12 @@
package main
func main() {
import (
"fmt"
"strings"
)
func main() {
str := "7151109597841850368 一个漂亮的中国女孩,手上拿着一桶爆米花,脸上带着迷人的微笑,电影效果"
index := strings.Index(str, " ")
fmt.Println(str[index+1:])
}