2022-09-03 10:53:46 +00:00
|
|
|
package joke
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2022-09-03 14:09:26 +00:00
|
|
|
// JokesBapak2Bucket defines the bucket that the jokes resides in.
|
2022-09-03 10:53:46 +00:00
|
|
|
const JokesBapak2Bucket = "jokesbapak2"
|
|
|
|
|
2022-09-03 14:09:26 +00:00
|
|
|
// Joke provides a simple struct that points
|
|
|
|
// to the information of the joke.
|
2022-09-03 10:53:46 +00:00
|
|
|
type Joke struct {
|
|
|
|
FileName string
|
|
|
|
ContentType string
|
|
|
|
ModifiedAt time.Time
|
|
|
|
}
|