6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
// Port (interface) for manga data access
|
|
export class MangaRepository {
|
|
async getMangaCollection(page = 1) {
|
|
throw new Error('Not implemented');
|
|
}
|
|
} |