Kennels are how you share and reuse GLang code.
Think of them as little doghouses full of useful code. You can download one, and then import it into your project!
You can install kennels with:
glang install <kennel_name>
Kennels are stored in your local machine at:
.glang/kennels/
They act as global imports, any GLang project on your system can use them.
Remove a kennel:
glang remove <kennel_name>
Update a kennel:
glang update <kennel_name>
(GLang won’t auto-update kennels; you’re in control!)
When you install a kennel, GLang gives it an Easy Import Identifier (EII), usually the same as the kennel’s name.
fetch kennel_name;
kennels_function();