Add some projects
This commit is contained in:
parent
c8fe18d1bc
commit
99673157b7
2 changed files with 127 additions and 16 deletions
|
@ -1,16 +1,16 @@
|
|||
enum ToolType {
|
||||
LANGUAGE = 0b0001,
|
||||
FRAMEWORK = 0b0010,
|
||||
LIB_OR_PACKAGE = 0b0100,
|
||||
OTHER = 0b1000
|
||||
LANGUAGE = 0b0001,
|
||||
FRAMEWORK = 0b0010,
|
||||
LIB_OR_PACKAGE = 0b0100,
|
||||
OTHER = 0b1000
|
||||
}
|
||||
|
||||
enum ToolPlatform {
|
||||
MOBILE = 0b00001,
|
||||
WEB_FRONT = 0b00010,
|
||||
WEB_BACK = 0b00100,
|
||||
SYSTEM = 0b01000,
|
||||
DESKTOP = 0b10000
|
||||
MOBILE = 0b00001,
|
||||
WEB_FRONT = 0b00010,
|
||||
WEB_BACK = 0b00100,
|
||||
SYSTEM = 0b01000,
|
||||
DESKTOP = 0b10000
|
||||
}
|
||||
|
||||
interface Tool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue