Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (26 loc) · 763 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 763 Bytes

Codacy Badge

including

#include <mal/mal.hpp>

basic usage

this function is used to GET anime/s then individually stored in anime. this ultimately makes it easier to access.

mal::search<anime>("one piece", 5, [](auto i) {
	...
});

manga...

mal::search<manga>("one piece", 5, [](auto i) {
	...
});

get website/API response time in seconds.

double palse = mal::api_palse();
...

NOTE: this is blocked code- meaning following code will be paused until this function finishes.