mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
254 B
C
16 lines
254 B
C
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "solstdlib/cryptography.h"
|
|
|
|
namespace solidity::solstdlib
|
|
{
|
|
|
|
static std::map<std::string, std::string> sources = {
|
|
{ "std/cryptography.sol", cryptography },
|
|
};
|
|
|
|
} // namespace solidity::solstdlib
|