16 lines
316 B
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
|
|
}
|