mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
160 B
C++
12 lines
160 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Target {
|
|
std::string workspace;
|
|
std::string project;
|
|
std::string name;
|
|
std::string type;
|
|
size_t fileCount;
|
|
};
|