mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-10-05 21:22:39 +02:00
9 lines
248 B
Java
9 lines
248 B
Java
package nu.marginalia;
|
|
|
|
/**
|
|
* A record representing a User Agent.
|
|
* @param uaString - the header value of the User Agent
|
|
* @param uaIdentifier - what we look for in robots.txt
|
|
*/
|
|
public record UserAgent(String uaString, String uaIdentifier) {}
|