fabiothiroki/go-twitter-bot

View on GitHub
internal/database/quote.go

Summary

Maintainability
A
0 mins
Test Coverage
package database

// Quote represents the database entity
type Quote struct {
    ID     int
    Text   string
    Author string
}