use genotype_parser::*;
use serde::Serialize;
#[derive(Debug, PartialEq, Clone, Serialize)]
pub struct GtpModuleIdentifierResolve {
pub source: GtpModuleIdentifierSource,
}
#[derive(Debug, PartialEq, Clone, Serialize)]
pub enum GtpModuleIdentifierSource {
Local,
External(
GtPath,
),
Package(
GtPath,
),
}