graphannis-webservice 4.1.2

This is a web service to the new backend implementation of the ANNIS linguistic search and visualization system.
1
2
3
4
5
6
7
8
9
10
11
12
use crate::schema::{corpus_groups, groups};

#[derive(Queryable, Insertable)]
pub struct CorpusGroup {
    pub group: String,
    pub corpus: String,
}

#[derive(Insertable)]
pub struct Group {
    pub name: String,
}