lbrypress/classes/LBRY_Speech.php
2018-09-11 15:10:15 -05:00

28 lines
481 B
PHP

<?php
/**
* Connects to an spee.ch style server to host assets via the LBRY Protocol
*
* Visit https://github.com/lbryio/spee.ch for more info
*
* @package LBRYPress
*/
class LBRY_Speech
{
/**
* [__construct description]
*/
public function __construct()
{
}
public function get_address()
{
return get_option(LBRY_SPEECH);
}
public function set_address($address)
{
update_option(LBRY_SPEECH, $address);
}
}