This repository has been archived on 2024-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
test2gis/src/main/scala/model/crawler/Crawler.scala

16 lines
316 B
Scala

package com.voronind.doublegis.test
package model.crawler
/**
* Web crawler base interface.
* Crawler is used to scrape the required data from a specified url.
*/
trait Crawler {
/**
* Fetch data from url.
* @param url Target to extract from.
* @return Result data.
*/
def crawl(url: String): String
}