I cloned this template. There is a code like this:
decl_storage! {
    trait Store for Module<T: Trait> as TemplateModule {
        Something get(fn something): Option<u32>;
    }
}
What does Something get(fn something): Option<u32>; mean?
Especially what is Something before get(fn something)?