1
2
3
4
5
6
7
use serde::Serialize;

/// The package category
#[derive(Debug, Clone, Copy, Serialize)]
pub enum Category {
    Snippets,
}