stig

A CLI tool for searching GitHub from the terminal.


stig

/

src

/

stig

/

stig.hh

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef OB_STIG_HH
#define OB_STIG_HH

#include <cstddef>

#include <string>

namespace OB::Stig
{

void search(std::string const& host, std::string const& query,
  std::string const& sort, std::string const& order, std::size_t page,
  std::size_t per_page, std::string const& token, std::string const& color);
void readme(std::string const& host, std::string const& repo, std::string const& ref);

} // namespace OB::Stig

#endif // OB_STIG_HH
Back to Top