Skip to content

Instantly share code, notes, and snippets.

@cretz
Created February 5, 2013 16:52
Show Gist options
  • Save cretz/4715771 to your computer and use it in GitHub Desktop.
Save cretz/4715771 to your computer and use it in GitHub Desktop.
module SoftLayer {
module Zookeeper {
class Acl {
static openAclUnsafe = new Acl(Zookeeper.PERM_ALL);
constructor(public permissions) { }
}
}
class Zookeeper {
static PERM_ALL = 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment