baseimage-tutorial-framework/lib/tfw/util.py

9 lines
175 B
Python
Raw Normal View History

def create_source_code_response_data(filename, content, language):
return {
'filename': filename,
'content': content,
'language': language
}