diff options
Diffstat (limited to 'link.go')
| -rw-r--r-- | link.go | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +// SPDX-License-Identifier: GPL-3.0-only +// SPDX-FileCopyrightText: 2025 M. Shulhan <ms@kilabit.info> + +package jarink + +// Link store information about the link. +type Link struct { + Url string `json:"url"` + Size int64 `json:"size"` + ResponseCode int `json:"response_code"` +} |
