We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5da209 commit 434df5aCopy full SHA for 434df5a
1 file changed
src/Endpoint/IncusOS/System/Kernel.php
@@ -0,0 +1,19 @@
1
+<?php
2
+
3
+namespace Opensaucesystems\Lxd\Endpoint\IncusOS\System;
4
5
+use Opensaucesystems\Lxd\Endpoint\AbstractEndpoint;
6
7
+class Kernel extends AbstractEndpoint
8
+{
9
10
+ protected function getEndpoint()
11
+ {
12
+ return '/os/1.0/system/kernel';
13
+ }
14
15
+ public function info()
16
17
+ return $this->get($this->getEndpoint());
18
19
+}
0 commit comments