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