Skip to content

Instantly share code, notes, and snippets.

@trikitrok
trikitrok / IndexationAndCalculator.java
Last active February 4, 2025 17:18 — forked from franreyes/IndexationAndCalculator.java
IndexationAndCalculator.java
public interface IndexationCalculator {
Page update(Page current, Search search);
}
public interface CanonicalCalculator {
Page update(Page current, Search search);
}
public class Page {
public bool isIndexed;
public class PageSEO {
Page calculate(Page current, Search search) {
// ...
}
}