Skip to content

chinassx/midjourney

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Midjourney Discord Bot

Installing

go get -u github.com/hedeqiang/midjourney

Configuration

client, _ := NewClient(&ClientOptions{
    BotToken:           "botToken",
    AuthorizationToken: "authToken",
    GuildId:            "1098487760261755000",
    ChannelId:          "xxx",
    ApplicationId:      "936929561302675456",
})

Usage

if err := client.Connect(); err != nil {
    log.Fatal(err)
}

defer client.Disconnect()

client.OnMessage(func(m *discordgo.MessageCreate) {
    if m.Author.ID == client.dg.State.User.ID {
        return
    }
    if data, err := json.Marshal(m); err == nil {
        log.Println("received message:", string(data))
    }

    if len(m.Attachments) > 0 {
        log.Println(m.Attachments[0].URL)
        url := m.Attachments[0].URL
        customId, _ := ExtractDataFromURL(url)
        log.Println(customId)
    }
})

log.Println("Bot is now running. Press CTRL-C to exit.")

select {}

GenerateImage

client.GenerateImage("cat")

Upscale

client.Upscale(2, "1099257364063985717", "3c6d3742-28bb-4354-a735-c815d82c4184")

Upscale

client.Reset("1099257364063985717", "3c6d3742-28bb-4354-a735-c815d82c4184")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages