8 lines
137 B
Python
8 lines
137 B
Python
|
from teal.resource import View
|
||
|
|
||
|
|
||
|
class Remove(View):
|
||
|
def post(self):
|
||
|
"""Removes a component from a computer."""
|
||
|
pass
|