mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-06 00:11:22 +00:00
9 lines
175 B
Python
9 lines
175 B
Python
def create_source_code_response_data(filename, content, language):
|
|
return {
|
|
'filename': filename,
|
|
'content': content,
|
|
'language': language
|
|
}
|
|
|
|
|