Skip to content

Directory Structure

DavideC03 edited this page Jan 27, 2023 · 13 revisions

:octocat: Directory structure :octocat:

../repo
├── Dockerfile
├── Makefile
├── bin # source code
│   ├── core.cpp
│   ├── global-libraries
│   │   ├── Makefile
│   │   ├── bin # source code
│   │   │   ├── cryptation.cpp
│   │   │   ├── cryptation.hpp
│   │   │   ├── emoji.cpp
│   │   │   ├── emoji.hpp
│   │   │   ├── inputs.cpp
│   │   │   ├── inputs.hpp
│   │   │   ├── json.hpp
│   │   │   ├── positive.cpp
│   │   │   ├── positive.hpp
│   │   │   ├── rest.cpp
│   │   │   ├── rest.hpp
│   │   │   ├── sleep.cpp
│   │   │   └── sleep.hpp
│   │   └── docs # documentation
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── libraries-createstructure-Class-UML.svg
│   │       └── libraries-createstructure.drawio
│   └── local-libraries
│       ├── getTemplate.cpp
│       ├── getTemplate.hpp
│       ├── getUploadURL.cpp
│       ├── getUploadURL.hpp
│       ├── inputCheck.cpp
│       ├── inputCheck.hpp
│       ├── priority.cpp
│       ├── priority.hpp
│       ├── repo.cpp
│       ├── repo.hpp
│       ├── repoInfoCheck.cpp
│       ├── repoInfoCheck.hpp
│       ├── workload.cpp
│       └── workload.hpp
└── docs # documentation
    ├── CHANGELOG.md
    ├── LICENSE
    ├── README.md
    ├── core-createstructure-Class-UML.svg
    └── core-createstructure.drawio

6 directories, 41 files

Clone this wiki locally