summaryrefslogtreecommitdiff
path: root/bos.sh
blob: fe7fc0d91e3e8ed2ab08241eb455d1aafacc6272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!bash 
 
if [[ -z "$bos_inited" ]]; then
    set -e
 
    . bos-args.sh
    . bos-dispatch.sh
    . bos-namespaces.sh
    . bos-object-id.sh
    . bos-base.sh
    . bos-meta.sh
    . bos-meta-class.sh
    . bos-meta-attribute.sh
    . bos-meta-bootstrap.sh
    . bos-sugar.sh
 
    bos_inited=1
fi