feat: stable-diffusion refactored, replace websocket api with sdapi

This commit is contained in:
RockYang
2024-03-26 18:23:08 +08:00
parent 870706c4ff
commit b60a639312
11 changed files with 191 additions and 335 deletions

View File

@@ -1,21 +1,5 @@
package main
import (
"chatplus/utils"
"fmt"
)
type Person struct {
Name string
Age int
}
type Student struct {
Person
School string
}
func main() {
fmt.Println(utils.RandString(64))
}