[][src]Module tweetr::ops::queue_tweet

This module contains the functions used only by the queue-tweet subsystem.

The flow of the queue-tweet subsystem is as follows:

Options::parse()
|> ops::queue_tweet::tweets_path()
|> ops::queue_tweet::get_tweet()
|> ops::QueuedTweet::read()
|> ops::QueuedTweet::write()

When queueing from file:

Options::parse()
|> ops::queue_tweet::tweets_path()
|> ops::QueuedTweet::read()
|> ops::QueuedTweet::read()
|> ops::QueuedTweet::write()

Functions

get_tweet

Prompt the user for application data.

tweets_path

Get the path to the file containing the global tweet queue.