Documentation
¶
Index ¶
Constants ¶
View Source
const ( MassdriverURL = "https://api.massdriver.cloud/" ArtifactsSchemaFilename = "schema-artifacts.json" ConnectionsSchemaFilename = "schema-connections.json" ParamsSchemaFilename = "schema-params.json" UISchemaFilename = "schema-ui.json" )
View Source
const ( Read = 04 Write = 02 Execute = 01 UserShift = 6 GroupShift = 3 OtherShift = 0 UserRead = Read << UserShift UserWrite = Write << UserShift UserExecute = Execute << UserShift UserRW = UserRead | UserWrite UserRWX = UserRW | UserExecute GroupRead = Read << GroupShift GroupWrite = Write << GroupShift GroupExecute = Execute << GroupShift GroupRW = GroupRead | GroupWrite GroupRWX = GroupRW | GroupExecute OtherRead = Read << OtherShift OtherWrite = Write << OtherShift OtherExecute = Execute << OtherShift OtherRW = OtherRead | OtherWrite OtherRWX = OtherRW | OtherExecute AllRead = UserRead | GroupRead | OtherRead AllWrite = UserWrite | GroupWrite | OtherWrite AllExecute = UserExecute | GroupExecute | OtherExecute AllRX = AllRead | AllExecute AllRW = AllRead | AllWrite AllRWX = AllRW | AllExecute )
named constants for common unix file permissions logic adapted from https://stackoverflow.com/questions/28969455/how-to-properly-instantiate-os-filemode/42718395#42718395
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.