feat: add get tags endpoint

This commit is contained in:
Harsh Shandilya 2025-06-05 22:28:23 +05:30
parent d69629c319
commit a0f044786f
5 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,23 @@
/*
* Copyright © Harsh Shandilya.
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
package dev.msfjarvis.claw.model
import dev.drewhamilton.poko.Poko
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
@Poko
class Tag(
val tag: String,
val description: String,
val privileged: Boolean,
val active: Boolean,
val category: String,
@SerialName("is_media") val isMedia: Boolean,
@SerialName("hotness_mod") val hotnessMod: Double,
)