mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
5 lines
156 B
TypeScript
5 lines
156 B
TypeScript
const systemNetworks = ['host', 'bridge', 'none'];
|
|
|
|
export function isSystemNetwork(networkName: string) {
|
|
return systemNetworks.includes(networkName);
|
|
}
|